Stoppped building sourcemaps for (ES6) transpiled CSX library, because it was being incorrectly used by subsequent steps. Resulting in bad source maps in the end-results

This commit is contained in:
Miel Truyen 2019-11-15 21:17:28 +01:00
parent 651a96a227
commit 6e3fdaa718

View File

@ -33,8 +33,8 @@
"watch": "npm-run-all -p watch-cjs watch-es6",
"build-cjs": "rollup -c",
"watch-cjs": "rollup -c -w",
"build-es6": "npx babel ./src --out-dir=lib --source-maps",
"watch-es6": "npx babel ./src --out-dir=lib --source-maps -w",
"build-es6": "npx babel ./src --out-dir=lib",
"watch-es6": "npx babel ./src --out-dir=lib -w",
"npm-publish": "npm run build && npm publish --registry https://npm.cerxes.net"
},
"module": "./lib/index.js",