🚧 Handling of package.json exceptions
This commit is contained in:
parent
daf65326ae
commit
0461c64b9a
117 changed files with 1018 additions and 772 deletions
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"name": "@freesewing/patterns",
|
||||
"version": "0.33.0",
|
||||
"description": "An umbrella package for all FreeSewing patterns",
|
||||
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
|
||||
"homepage": "https://freesewing.org/",
|
||||
"repository": "github:freesewing/freesewing",
|
||||
|
@ -21,8 +24,8 @@
|
|||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/patterns",
|
||||
"nodebuild": "rollup -c -o ../../dist/patterns/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/patterns/index.mjs -f es",
|
||||
"nodebuild": "BABEL_ENV=production rollup -c -o ../../dist/patterns/index.js -f cjs",
|
||||
"modulebuild": "BABEL_ENV=production rollup -c -o ../../dist/patterns/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"patterns: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
|
@ -55,8 +58,7 @@
|
|||
"access": "public"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.0.0"
|
||||
},
|
||||
"version": "0.33.0",
|
||||
"name": "@freesewing/patterns"
|
||||
"node": ">=8.0.0",
|
||||
"npm": ">=5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ export default {
|
|||
},
|
||||
plugins: [
|
||||
peerDepsExternal(),
|
||||
resolve({ browser: true }),
|
||||
resolve({ modulesOnly: true }),
|
||||
json(),
|
||||
babel({
|
||||
exclude: "node_modules/**",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue