From ee0bf0b812cf258006b4fe2fa461d65606181711 Mon Sep 17 00:00:00 2001 From: joshuawilson Date: Mon, 23 Oct 2017 21:36:07 -0400 Subject: [PATCH] fix(build): update clean commmand to use 'verify' instead of deprecated 'clear' --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ead153f..1694535 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "build:components": "npm-run-all remove-dist bundle minify prebuild:add-require transpile-sass transpile copy-files postbuild:remove-require", "bundle": "webpack --config config/webpack.prod.js --progress --profile --bail", "clean-dist": "rimraf dist dist-watch", - "clean": "npm cache clean && npm run rimraf -- node_modules doc coverage dist bundles", + "clean": "npm cache verify && npm run rimraf -- node_modules doc coverage dist bundles", "cleanup": "rimraf dist/package.json dist/bundles dist/src dist/index.d.ts dist/index.metadata.json dist/index.js dist/index.js.map dist/LICENSE dist/README.md", "copy-files": "gulp copyfiles", "copy-dist-files": "copyfiles LICENSE README.md package.json index.js dist",