🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

datacollet

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

datacollet - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
package.json
{
"name": "datacollet",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,37 +0,13 @@

let path = require('path');
let webpack = require('webpack');
const {resolve} = require('path');
module.exports = {
entry: './index.js',
mode:'production',
output: {
path: path.join(__dirname, 'dist'), //输出目录的配置,模板、样式、脚本、图片等资源的路径配置都相对于它
filename: "index.js",
libraryExport: "default",
library: "DataGetting",
libraryTarget: "var"
},
performance: {
// hints:'warning',
// //入口起点的最大体积
// maxEntrypointSize: 50000000,
// //生成文件的最大体积
// maxAssetSize: 30000000,
// //只给出 js 文件的性能提示
// assetFilter: function(assetFilename) {
// return assetFilename.endsWith('.js');
// }
},
plugins: [
// new webpack.HotModuleReplacementPlugin()
],
devServer: {
// hot: true,
// historyApiFallback:true,
// port:9988
},
module: {
rules: [
]
}
entry: [
'./index.js'
],
output: {
path: resolve('./dist'),
filename: 'collet.js',
libraryTarget: "var",
library: "DataGetting"
}
};