maishu-chitu-service
Advanced tools
Comparing version 1.10.0 to 1.11.0
/*! | ||
* ~ | ||
* maishu-chitu-service v1.10.0 | ||
* maishu-chitu-service v1.11.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(); | ||
else if(typeof define === 'function' && define.amd) | ||
define([], factory); | ||
else { | ||
var a = factory(); | ||
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i]; | ||
} | ||
})(typeof window === 'undefined' ? global : window, function() { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
/******/ (function(modules) { // webpackBootstrap | ||
/******/ // The module cache | ||
@@ -963,3 +953,2 @@ /******/ var installedModules = {}; | ||
/******/ }); | ||
}); | ||
//# sourceMappingURL=index.es5.js.map |
/*! | ||
* ~ | ||
* maishu-chitu-service v1.10.0 | ||
* maishu-chitu-service v1.11.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) { | ||
@@ -41,4 +54,6 @@ | ||
webpack: { | ||
es6: webpackES6Config, | ||
es5: webpackES5Config, | ||
es6: webpack_es6, | ||
es6_min: webpack_es6_min, | ||
es5: webpack_es5, | ||
es5_min: webpack_es5_min, | ||
}, | ||
@@ -45,0 +60,0 @@ }) |
@@ -27,3 +27,3 @@ { | ||
"types": "./out/index.d.ts", | ||
"version": "1.10.0" | ||
"version": "1.11.0" | ||
} |
Sorry, the diff of this file is not supported yet
288440
50
3141
8