feature(EJ2-52126): Revert the changes

This commit is contained in:
Suganthi Karuppannan 2021-08-11 18:41:33 +05:30
Родитель 132be83fed
Коммит 012187f4ec
2 изменённых файлов: 21 добавлений и 13 удалений

Просмотреть файл

@ -6,25 +6,24 @@
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2": "*",
"browser-sync": "^2.26.3",
"cheerio": "^1.0.0-rc.1",
"crossroads": "^0.12.2",
"hasher": "^1.2.0"
"gulp": "^3.9.1",
"hasher": "^1.2.0",
"webpack": "^2.5.1",
"webpack-stream": "^4.0.0"
},
"devDependencies": {
"@syncfusion/ej2-build": "*",
"elasticlunr": "0.9.5",
"gulp-jshint": "^2.0.1",
"fuse.js": "^3.2.0",
"jshint": "^2.9.2"
"gulp-jshint": "^2.0.1",
"jshint": "^2.9.2",
"run-sequence": "^2.2.1"
},
"scripts": {
"test": "gulp js-hint && gulp build",
"ci-publish": "gulp publish-samples"
},
"config": {
"ghooks": {
"pre-commit": "npm run test",
"commit-msg": "gulp commit-message"
}
"test": "gulp js-hint ",
"serve": "gulp serve",
"build": "gulp build"
}
}

Просмотреть файл

@ -9,6 +9,15 @@ module.exports = {
libraryTarget: 'this'
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
beautify: false,
output: {
comments: false
},
compress: {
warnings: false,
unused: true
}
})
]
}