maishu-chitu-react
Advanced tools
Comparing version 1.21.0 to 1.25.0
/*! | ||
* | ||
* maishu-chitu-react v1.21.0 | ||
* maishu-chitu-react v1.25.0 | ||
* https://github.com/ansiboy/services-sdk | ||
@@ -10,13 +10,3 @@ * | ||
*/ | ||
(function webpackUniversalModuleDefinition(root, factory) { | ||
if(typeof exports === 'object' && typeof module === 'object') | ||
module.exports = factory(require("maishu-chitu"), require("react"), require("react-dom")); | ||
else if(typeof define === 'function' && define.amd) | ||
define(["maishu-chitu", "react", "react-dom"], factory); | ||
else { | ||
var a = typeof exports === 'object' ? factory(require("maishu-chitu"), require("react"), require("react-dom")) : factory(root["maishu-chitu"], root["react"], root["react-dom"]); | ||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; | ||
} | ||
})(typeof window === 'undefined' ? global : window, function(__WEBPACK_EXTERNAL_MODULE_maishu_chitu__, __WEBPACK_EXTERNAL_MODULE_react__, __WEBPACK_EXTERNAL_MODULE_react_dom__) { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
/******/ (function(modules) { // webpackBootstrap | ||
/******/ // The module cache | ||
@@ -462,3 +452,3 @@ /******/ var installedModules = {}; | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_maishu_chitu__; | ||
module.exports = maishu-chitu; | ||
@@ -474,3 +464,3 @@ /***/ }), | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_react__; | ||
module.exports = react; | ||
@@ -486,3 +476,3 @@ /***/ }), | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_react_dom__; | ||
module.exports = react-dom; | ||
@@ -492,3 +482,2 @@ /***/ }) | ||
/******/ }); | ||
}); | ||
//# sourceMappingURL=index.es5.js.map |
/*! | ||
* | ||
* maishu-chitu-react v1.21.0 | ||
* maishu-chitu-react v1.25.0 | ||
* https://github.com/ansiboy/services-sdk | ||
@@ -5,0 +5,0 @@ * |
const webpackES6Config = require('./webpack.config.js'); | ||
let webpackES5Config = Object.assign({}, webpackES6Config) | ||
webpackES5Config.entry = __dirname + "/out-es5/index.js"//已多次提及的唯一入口文件 | ||
webpackES5Config.output = Object.assign({}, webpackES5Config.output) | ||
webpackES5Config.output.filename = "index.es5.js" | ||
const webpack_es6 = require('./webpack.config.js'); | ||
let webpack_es6_min = Object.assign({}, webpack_es6, { | ||
output: { filename: "index.min.js" }, | ||
mode: "production" | ||
}) | ||
let webpack_es5 = Object.assign({}, webpack_es6, { | ||
entry: __dirname + "/out-es5/index.js", | ||
output: { filename: "index.es5.js" } | ||
}) | ||
let webpack_es5_min = Object.assign({}, webpack_es6, { | ||
entry: __dirname + "/out-es5/index.js", | ||
output: { filename: "index.es5.min.js" }, | ||
mode: "production" | ||
}) | ||
module.exports = function (grunt) { | ||
@@ -19,4 +33,6 @@ | ||
webpack: { | ||
es6: webpackES6Config, | ||
es5: webpackES5Config, | ||
es6: webpack_es6, | ||
es6_min: webpack_es6_min, | ||
es5: webpack_es5, | ||
es5_min: webpack_es5_min, | ||
}, | ||
@@ -23,0 +39,0 @@ babel: { |
{ | ||
"name": "maishu-chitu-react", | ||
"version": "1.21.0", | ||
"version": "1.25.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
492972
60
2856