1
0
Fork 0

chore: Remove experimetal json imports flag, no longer needed

This commit is contained in:
Joost De Cock 2022-08-29 17:41:00 +02:00
parent 2bdd5f376e
commit 0e65a5843d
80 changed files with 318 additions and 318 deletions

View file

@ -30,17 +30,17 @@
".": "./dist/index.mjs"
},
"scripts": {
"build": "node --experimental-json-modules build.mjs",
"build": "node build.mjs",
"clean": "rimraf dist",
"mbuild": "NO_MINIFY=1 node --experimental-json-modules build.mjs",
"mbuild": "NO_MINIFY=1 node build.mjs",
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
"test": "npx mocha tests/*.test.mjs",
"vbuild": "VERBOSE=1 node --experimental-json-modules build.mjs",
"vbuild": "VERBOSE=1 node build.mjs",
"lab": "cd ../../sites/lab && yarn start",
"tips": "node ../../scripts/help.mjs",
"prettier": "npx prettier --write 'src/*.mjs' 'tests/*.mjs'",
"testci": "npx mocha tests/*.test.mjs --reporter ../../tests/reporters/terse.js",
"cibuild_step1": "node --experimental-json-modules build.mjs"
"cibuild_step1": "node build.mjs"
},
"peerDependencies": {
"@freesewing/core": "^3.0.0-alpha.0"