From aaeb2de7fd64c904aa5be5851b55347bc684af04 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Fri, 31 Dec 2021 14:16:21 +0100 Subject: [PATCH] chore: Updated cibuild to deal with 2 steps --- config/scripts.yaml | 13 +++++++------ config/templates/package.dflt.json | 2 +- package.json | 4 ++-- packages/aaron/package.json | 2 +- packages/albert/package.json | 2 +- packages/bee/package.json | 2 +- packages/bella/package.json | 2 +- packages/benjamin/package.json | 2 +- packages/bent/package.json | 2 +- packages/breanna/package.json | 2 +- packages/brian/package.json | 2 +- packages/bruce/package.json | 2 +- packages/carlita/package.json | 2 +- packages/carlton/package.json | 2 +- packages/cathrin/package.json | 2 +- packages/charlie/package.json | 2 +- packages/components/package.json | 3 ++- packages/core/package.json | 2 +- packages/cornelius/package.json | 2 +- packages/css-theme/package.json | 2 +- packages/diana/package.json | 2 +- packages/examples/package.json | 2 +- packages/florence/package.json | 2 +- packages/florent/package.json | 2 +- packages/gatsby-remark-jargon/package.json | 2 +- packages/holmes/package.json | 2 +- packages/hortensia/package.json | 2 +- packages/huey/package.json | 2 +- packages/hugo/package.json | 2 +- packages/i18n/package.json | 2 +- packages/jaeger/package.json | 2 +- packages/legend/package.json | 2 +- packages/lunetius/package.json | 2 +- packages/models/package.json | 2 +- packages/mui-theme/package.json | 2 +- packages/paco/package.json | 2 +- packages/pattern-info/package.json | 3 ++- packages/penelope/package.json | 2 +- packages/plugin-banner/package.json | 2 +- packages/plugin-bartack/package.json | 2 +- packages/plugin-bundle/package.json | 2 +- packages/plugin-bust/package.json | 2 +- packages/plugin-buttons/package.json | 2 +- packages/plugin-cutonfold/package.json | 2 +- packages/plugin-dimension/package.json | 2 +- packages/plugin-export-dxf/package.json | 2 +- packages/plugin-flip/package.json | 2 +- packages/plugin-gore/package.json | 2 +- packages/plugin-grainline/package.json | 2 +- packages/plugin-i18n/package.json | 2 +- packages/plugin-logo/package.json | 2 +- packages/plugin-measurements/package.json | 2 +- packages/plugin-mirror/package.json | 2 +- packages/plugin-notches/package.json | 2 +- packages/plugin-round/package.json | 2 +- packages/plugin-scalebox/package.json | 2 +- packages/plugin-sprinkle/package.json | 2 +- packages/plugin-svgattr/package.json | 2 +- packages/plugin-theme/package.json | 2 +- packages/plugin-title/package.json | 2 +- packages/plugin-validate/package.json | 2 +- packages/plugin-versionfree-svg/package.json | 2 +- packages/remark-jargon/package.json | 2 +- packages/rendertest/package.json | 2 +- packages/sandy/package.json | 2 +- packages/shin/package.json | 2 +- packages/simon/package.json | 2 +- packages/simone/package.json | 2 +- packages/snapseries/package.json | 2 +- packages/sven/package.json | 2 +- packages/tamiko/package.json | 2 +- packages/teagan/package.json | 2 +- packages/theo/package.json | 2 +- packages/tiberius/package.json | 2 +- packages/titan/package.json | 2 +- packages/trayvon/package.json | 2 +- packages/tutorial/package.json | 2 +- packages/ursula/package.json | 2 +- packages/utils/package.json | 2 +- packages/wahid/package.json | 2 +- packages/walburga/package.json | 2 +- packages/waralee/package.json | 2 +- packages/yuri/package.json | 2 +- 83 files changed, 92 insertions(+), 89 deletions(-) diff --git a/config/scripts.yaml b/config/scripts.yaml index ca3e685bddf..0408d73da6a 100644 --- a/config/scripts.yaml +++ b/config/scripts.yaml @@ -1,7 +1,7 @@ _: clean: 'rimraf dist' build: 'rollup -c' - lernabuild: 'rollup -c' + cibuild_step1: 'rollup -c' test: 'echo "{{name}}: No tests configured. Perhaps you''d like to do this?" && exit 0' pubtest: 'npm publish --registry http://localhost:6662' pubforce: 'npm publish' @@ -20,10 +20,10 @@ create-freesewing-pattern: clean: '!' nodebuild: '!' modulebuild: '!' - lernabuild: '!' + cibuild_step1: '!' build: '!' css-theme: - lernabuild: 'npx node-sass --output-style compressed src/theme.scss dist/theme.css' + cibuild_step1: 'npx node-sass --output-style compressed src/theme.scss dist/theme.css' build: 'npx node-sass --output-style compressed src/theme.scss dist/theme.css' watch: 'npx node-sass --watch --output-style compressed src/theme.scss dist/theme.css' components: @@ -32,7 +32,7 @@ components: # react-scripts doesn't handle .mjs files correctly modulebuild: '!' clean: 'rimraf Blockquote && rimraf Draft && rimraf DraftConfigurator && rimraf Emblem && rimraf Example && rimraf Footer && rimraf Icon && rimraf Logo && rimraf Navbar && rimraf Ogol && rimraf Robot && rimraf SampleConfigurator && rimraf withGist && rimraf withLanguage && rimraf Workbench' - lernabuild: 'rollup -c' + cibuild_step2: 'rollup -c' build: 'rollup -c' watch: 'BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs' core: @@ -44,10 +44,11 @@ i18n: # react-scripts doesn't handle .mjs files correctly modulebuild: '!' pattern-info: - lernabuild: 'node src/prebuild.js && rollup -c' + cibuild_step1: 'node src/prebuild.js' + cibuild_step2: 'rollup -c' prebuild: 'node src/prebuild.js' plugin-theme: - lernabuild: "npx node-sass --output-style compressed -r src/scss -o css && echo 'export default `' > src/bundle.css.js && cat css/*.css >> src/bundle.css.js && echo '`;' >> src/bundle.css.js && rollup -c" + cibuild_step1: "npx node-sass --output-style compressed -r src/scss -o css && echo 'export default `' > src/bundle.css.js && cat css/*.css >> src/bundle.css.js && echo '`;' >> src/bundle.css.js && rollup -c" prebuild: "npx node-sass --output-style compressed -r src/scss -o css && echo 'export default `' > src/bundle.css.js && cat css/*.css >> src/bundle.css.js && echo '`;' >> src/bundle.css.js" utils: # react-scripts doesn't handle .mjs files correctly diff --git a/config/templates/package.dflt.json b/config/templates/package.dflt.json index 77c855f4ae3..ddeb01be6c1 100644 --- a/config/templates/package.dflt.json +++ b/config/templates/package.dflt.json @@ -16,7 +16,7 @@ "scripts": { "watch": "rollup -c -w", "start": "rollup -c -w", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "build": "rollup -c", "testonly": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.js --require @babel/register", "publish": "npm run build && npm publish --access public" diff --git a/package.json b/package.json index 28890fcd5e5..a644aee5386 100644 --- a/package.json +++ b/package.json @@ -14,13 +14,13 @@ "homepage": "https://freesewing.org/", "license": "MIT", "scripts": { - "kickstart": "npx lerna bootstrap && npx lerna run lernabuild --no-bail && npx lerna run lernabuild", + "kickstart": "npx lerna bootstrap && npm run buildall", "clean": "rimraf dist", "test": "lerna run test", "prettier": "npx prettier --write 'packages/**/src/*.js' 'packages/**/config/*.js' 'packages/**/example/src/*' 'packages/i18n/src/locales/**/*.*' 'packages/**/tests/*.js'", "reconfigure": "all-contributors generate && node scripts/reconfigure.js", "prerelease": "lerna version --no-git-tag-version --no-push && yarn reconfigure && lerna run lernabuild", - "buildall": "lerna run lernabuild", + "buildall": "lerna run cibuild_step1 && lerna run cibuild_step2", "testall": "lerna run testci", "release": "lerna exec -- npm publish", "postrelease": "git add . && git commit -m ':bookmark: v$npm_package_version' && git tag -a v$npm_package_version -m ':bookmark: FreeSewing v$npm_package_version'", diff --git a/packages/aaron/package.json b/packages/aaron/package.json index 7ef4d1751e1..e108ffba063 100644 --- a/packages/aaron/package.json +++ b/packages/aaron/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/albert/package.json b/packages/albert/package.json index 8fb4110db97..f5c0d572002 100644 --- a/packages/albert/package.json +++ b/packages/albert/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/bee/package.json b/packages/bee/package.json index c6aee3b8890..7ad461bd307 100644 --- a/packages/bee/package.json +++ b/packages/bee/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/bella/package.json b/packages/bella/package.json index 6c6a616da72..be06e2530a1 100644 --- a/packages/bella/package.json +++ b/packages/bella/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/benjamin/package.json b/packages/benjamin/package.json index 9c418b766b3..cc94eb8e63c 100644 --- a/packages/benjamin/package.json +++ b/packages/benjamin/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/bent/package.json b/packages/bent/package.json index d5779752c98..81a4e2624fa 100644 --- a/packages/bent/package.json +++ b/packages/bent/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/breanna/package.json b/packages/breanna/package.json index 4b5a7070608..7fbd27b16c2 100644 --- a/packages/breanna/package.json +++ b/packages/breanna/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/brian/package.json b/packages/brian/package.json index fe08a875ce0..a0f007d2efe 100644 --- a/packages/brian/package.json +++ b/packages/brian/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/bruce/package.json b/packages/bruce/package.json index d5caec432ff..b017000a5c5 100644 --- a/packages/bruce/package.json +++ b/packages/bruce/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/carlita/package.json b/packages/carlita/package.json index c226d8b80e0..bef1d6cfcf4 100644 --- a/packages/carlita/package.json +++ b/packages/carlita/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/carlton/package.json b/packages/carlton/package.json index 02dae44b148..3164f16424d 100644 --- a/packages/carlton/package.json +++ b/packages/carlton/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/cathrin/package.json b/packages/cathrin/package.json index a78cfad34c9..ce796aebfd8 100644 --- a/packages/cathrin/package.json +++ b/packages/cathrin/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/charlie/package.json b/packages/charlie/package.json index 38a1813abec..d76c4edc0ad 100644 --- a/packages/charlie/package.json +++ b/packages/charlie/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/components/package.json b/packages/components/package.json index d1d95189a57..e0c76159ef1 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -21,13 +21,14 @@ "scripts": { "clean": "rimraf Blockquote && rimraf Draft && rimraf DraftConfigurator && rimraf Emblem && rimraf Example && rimraf Footer && rimraf Icon && rimraf Logo && rimraf Navbar && rimraf Ogol && rimraf Robot && rimraf SampleConfigurator && rimraf withGist && rimraf withLanguage && rimraf Workbench", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"components: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", "symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -", "start": "rollup -c -w", "storybook": "start-storybook -p 6663", + "cibuild_step2": "rollup -c", "watch": "BABEL_ENV=production rollup -c -w -o dist/index.js -f cjs" }, "peerDependencies": { diff --git a/packages/core/package.json b/packages/core/package.json index 2e62172cccf..12da911c526 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -30,7 +30,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production nyc -x node_modules -x tests/fixtures -x bin-pack mocha tests/*.test.js", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/cornelius/package.json b/packages/cornelius/package.json index 1e0feba8a46..609442fe140 100644 --- a/packages/cornelius/package.json +++ b/packages/cornelius/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/css-theme/package.json b/packages/css-theme/package.json index 82e163d42d9..3e8c4d0aa51 100644 --- a/packages/css-theme/package.json +++ b/packages/css-theme/package.json @@ -24,7 +24,7 @@ "scripts": { "clean": "rimraf dist", "build": "npx node-sass --output-style compressed src/theme.scss dist/theme.css", - "lernabuild": "npx node-sass --output-style compressed src/theme.scss dist/theme.css", + "cibuild_step1": "npx node-sass --output-style compressed src/theme.scss dist/theme.css", "test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/diana/package.json b/packages/diana/package.json index 9114ac62029..21a42eb5a31 100644 --- a/packages/diana/package.json +++ b/packages/diana/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/examples/package.json b/packages/examples/package.json index cec03d1c138..9d7c4450f47 100644 --- a/packages/examples/package.json +++ b/packages/examples/package.json @@ -24,7 +24,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/florence/package.json b/packages/florence/package.json index 01a2cf1df8f..e508367668f 100644 --- a/packages/florence/package.json +++ b/packages/florence/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/florent/package.json b/packages/florent/package.json index e9b19dba856..f04efc8b16b 100644 --- a/packages/florent/package.json +++ b/packages/florent/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/gatsby-remark-jargon/package.json b/packages/gatsby-remark-jargon/package.json index c16ba012224..af78f7786f3 100644 --- a/packages/gatsby-remark-jargon/package.json +++ b/packages/gatsby-remark-jargon/package.json @@ -25,7 +25,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"gatsby-remark-jargon: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/holmes/package.json b/packages/holmes/package.json index 78cdd97cbb6..3b0dd945c81 100644 --- a/packages/holmes/package.json +++ b/packages/holmes/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/hortensia/package.json b/packages/hortensia/package.json index 8251f779ef0..e4e86ea67b0 100644 --- a/packages/hortensia/package.json +++ b/packages/hortensia/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/huey/package.json b/packages/huey/package.json index f32e3f7fe77..677aad43b66 100644 --- a/packages/huey/package.json +++ b/packages/huey/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/hugo/package.json b/packages/hugo/package.json index 28cae56edbb..63334c00d90 100644 --- a/packages/hugo/package.json +++ b/packages/hugo/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 8f6f47b1422..aabee5acd61 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -25,7 +25,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/jaeger/package.json b/packages/jaeger/package.json index 1f6b71d67d1..964ec017b00 100644 --- a/packages/jaeger/package.json +++ b/packages/jaeger/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/legend/package.json b/packages/legend/package.json index 8a6b6f35da1..cb94d523ffb 100644 --- a/packages/legend/package.json +++ b/packages/legend/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/lunetius/package.json b/packages/lunetius/package.json index 3a87da7194e..00195c6b0f8 100644 --- a/packages/lunetius/package.json +++ b/packages/lunetius/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/models/package.json b/packages/models/package.json index 869fca4fce8..f09d1cfbaf6 100644 --- a/packages/models/package.json +++ b/packages/models/package.json @@ -26,7 +26,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"models: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/mui-theme/package.json b/packages/mui-theme/package.json index 77bc7935a17..cdf8b04a453 100644 --- a/packages/mui-theme/package.json +++ b/packages/mui-theme/package.json @@ -24,7 +24,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"mui-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/paco/package.json b/packages/paco/package.json index 99ab95a0d62..adba95e159d 100644 --- a/packages/paco/package.json +++ b/packages/paco/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/pattern-info/package.json b/packages/pattern-info/package.json index ba7e452d92e..5ff94ea71c7 100644 --- a/packages/pattern-info/package.json +++ b/packages/pattern-info/package.json @@ -27,12 +27,13 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "node src/prebuild.js && rollup -c", + "cibuild_step1": "node src/prebuild.js", "test": "echo \"pattern-info: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", "symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -", "start": "rollup -c -w", + "cibuild_step2": "rollup -c", "prebuild": "node src/prebuild.js" }, "peerDependencies": {}, diff --git a/packages/penelope/package.json b/packages/penelope/package.json index f94f3a6ac45..c11997956bf 100644 --- a/packages/penelope/package.json +++ b/packages/penelope/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-banner/package.json b/packages/plugin-banner/package.json index ba3d743eed1..e89b586c76a 100644 --- a/packages/plugin-banner/package.json +++ b/packages/plugin-banner/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-bartack/package.json b/packages/plugin-bartack/package.json index 8ee9ed15aa5..baef5219db8 100644 --- a/packages/plugin-bartack/package.json +++ b/packages/plugin-bartack/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-bundle/package.json b/packages/plugin-bundle/package.json index d09a0e1a87d..32a7de90577 100644 --- a/packages/plugin-bundle/package.json +++ b/packages/plugin-bundle/package.json @@ -30,7 +30,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-bust/package.json b/packages/plugin-bust/package.json index d5e7d7cb37e..30fbd209d44 100644 --- a/packages/plugin-bust/package.json +++ b/packages/plugin-bust/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-buttons/package.json b/packages/plugin-buttons/package.json index 951458497c3..e73b1f0eca2 100644 --- a/packages/plugin-buttons/package.json +++ b/packages/plugin-buttons/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-cutonfold/package.json b/packages/plugin-cutonfold/package.json index 24a1b6e5572..f13b2bfb905 100644 --- a/packages/plugin-cutonfold/package.json +++ b/packages/plugin-cutonfold/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-dimension/package.json b/packages/plugin-dimension/package.json index 88ea4622867..f7e34467150 100644 --- a/packages/plugin-dimension/package.json +++ b/packages/plugin-dimension/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-export-dxf/package.json b/packages/plugin-export-dxf/package.json index c8e8473831e..ed5b0518967 100644 --- a/packages/plugin-export-dxf/package.json +++ b/packages/plugin-export-dxf/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-flip/package.json b/packages/plugin-flip/package.json index 627ba9c38af..a921bfedf60 100644 --- a/packages/plugin-flip/package.json +++ b/packages/plugin-flip/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-gore/package.json b/packages/plugin-gore/package.json index 8096b22b49f..74e162bb1fa 100644 --- a/packages/plugin-gore/package.json +++ b/packages/plugin-gore/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-grainline/package.json b/packages/plugin-grainline/package.json index 10e0edbac71..fb86d8fdbb1 100644 --- a/packages/plugin-grainline/package.json +++ b/packages/plugin-grainline/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-i18n/package.json b/packages/plugin-i18n/package.json index 9957115c353..326cc1d0d56 100644 --- a/packages/plugin-i18n/package.json +++ b/packages/plugin-i18n/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-logo/package.json b/packages/plugin-logo/package.json index 5fb198db66a..194c73fa1cc 100644 --- a/packages/plugin-logo/package.json +++ b/packages/plugin-logo/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-measurements/package.json b/packages/plugin-measurements/package.json index 99dd9889138..184fe47b420 100644 --- a/packages/plugin-measurements/package.json +++ b/packages/plugin-measurements/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-mirror/package.json b/packages/plugin-mirror/package.json index 3fa07e1a7af..4663404018a 100644 --- a/packages/plugin-mirror/package.json +++ b/packages/plugin-mirror/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-notches/package.json b/packages/plugin-notches/package.json index 57c99e688d6..ad2a3f0683e 100644 --- a/packages/plugin-notches/package.json +++ b/packages/plugin-notches/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-round/package.json b/packages/plugin-round/package.json index 1c209e3e629..62f0cfa22dd 100644 --- a/packages/plugin-round/package.json +++ b/packages/plugin-round/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-scalebox/package.json b/packages/plugin-scalebox/package.json index eccdd53b61b..e38ce4225d4 100644 --- a/packages/plugin-scalebox/package.json +++ b/packages/plugin-scalebox/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-sprinkle/package.json b/packages/plugin-sprinkle/package.json index 110f96ffd39..f583611ed06 100644 --- a/packages/plugin-sprinkle/package.json +++ b/packages/plugin-sprinkle/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-svgattr/package.json b/packages/plugin-svgattr/package.json index 5733e6b76fc..ba04141178d 100644 --- a/packages/plugin-svgattr/package.json +++ b/packages/plugin-svgattr/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-theme/package.json b/packages/plugin-theme/package.json index f0ab76c852c..b0c97af264b 100644 --- a/packages/plugin-theme/package.json +++ b/packages/plugin-theme/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "npx node-sass --output-style compressed -r src/scss -o css && echo 'export default `' > src/bundle.css.js && cat css/*.css >> src/bundle.css.js && echo '`;' >> src/bundle.css.js && rollup -c", + "cibuild_step1": "npx node-sass --output-style compressed -r src/scss -o css && echo 'export default `' > src/bundle.css.js && cat css/*.css >> src/bundle.css.js && echo '`;' >> src/bundle.css.js && rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-title/package.json b/packages/plugin-title/package.json index 31c57c551e6..496fcb2d24c 100644 --- a/packages/plugin-title/package.json +++ b/packages/plugin-title/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-validate/package.json b/packages/plugin-validate/package.json index a136d015723..b992cc0d973 100644 --- a/packages/plugin-validate/package.json +++ b/packages/plugin-validate/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/plugin-versionfree-svg/package.json b/packages/plugin-versionfree-svg/package.json index 1792af46377..4e0b7014bba 100644 --- a/packages/plugin-versionfree-svg/package.json +++ b/packages/plugin-versionfree-svg/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/remark-jargon/package.json b/packages/remark-jargon/package.json index e5d6e61b8ba..d29a76ef154 100644 --- a/packages/remark-jargon/package.json +++ b/packages/remark-jargon/package.json @@ -27,7 +27,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"remark-jargon: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/rendertest/package.json b/packages/rendertest/package.json index 292860ff952..8b172c2e032 100644 --- a/packages/rendertest/package.json +++ b/packages/rendertest/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/sandy/package.json b/packages/sandy/package.json index 62ee068229b..797439bde22 100644 --- a/packages/sandy/package.json +++ b/packages/sandy/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/shin/package.json b/packages/shin/package.json index f23bdc79751..2ab1c18f0d1 100644 --- a/packages/shin/package.json +++ b/packages/shin/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/simon/package.json b/packages/simon/package.json index 1895b32a642..e5f3e842867 100644 --- a/packages/simon/package.json +++ b/packages/simon/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/simone/package.json b/packages/simone/package.json index 210c50f98b5..9f7d19316d5 100644 --- a/packages/simone/package.json +++ b/packages/simone/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/snapseries/package.json b/packages/snapseries/package.json index 25dddf939c3..216830f0fb1 100644 --- a/packages/snapseries/package.json +++ b/packages/snapseries/package.json @@ -27,7 +27,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"snapseries: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/sven/package.json b/packages/sven/package.json index 3561e63c9b5..3a43ef5eb54 100644 --- a/packages/sven/package.json +++ b/packages/sven/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/tamiko/package.json b/packages/tamiko/package.json index 69d6afb177e..a69a70b2939 100644 --- a/packages/tamiko/package.json +++ b/packages/tamiko/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/teagan/package.json b/packages/teagan/package.json index 770ccba8608..b346d5c1340 100644 --- a/packages/teagan/package.json +++ b/packages/teagan/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/theo/package.json b/packages/theo/package.json index 5801097f48d..238340074cc 100644 --- a/packages/theo/package.json +++ b/packages/theo/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/tiberius/package.json b/packages/tiberius/package.json index 0cd0a339a27..5b16ab7bfc0 100644 --- a/packages/tiberius/package.json +++ b/packages/tiberius/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/titan/package.json b/packages/titan/package.json index 393272f95b5..76e9948aa6c 100644 --- a/packages/titan/package.json +++ b/packages/titan/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/trayvon/package.json b/packages/trayvon/package.json index 4f081a1af80..11547bb4b3e 100644 --- a/packages/trayvon/package.json +++ b/packages/trayvon/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/tutorial/package.json b/packages/tutorial/package.json index 3e8eaaa9285..a8c20ec8bd3 100644 --- a/packages/tutorial/package.json +++ b/packages/tutorial/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/ursula/package.json b/packages/ursula/package.json index 8f68d1c2fff..1f2db2c0e54 100644 --- a/packages/ursula/package.json +++ b/packages/ursula/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/utils/package.json b/packages/utils/package.json index 85281ddef80..8e57ef790a4 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -26,7 +26,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "echo \"utils: No tests configured. Perhaps you'd like to do this?\" && exit 0", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/wahid/package.json b/packages/wahid/package.json index 24ceb30ccb2..bad322d6e3e 100644 --- a/packages/wahid/package.json +++ b/packages/wahid/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/walburga/package.json b/packages/walburga/package.json index b4d344c8a64..bd59a6919ac 100644 --- a/packages/walburga/package.json +++ b/packages/walburga/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/waralee/package.json b/packages/waralee/package.json index 521adbd19b4..bbcc196f475 100644 --- a/packages/waralee/package.json +++ b/packages/waralee/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish", diff --git a/packages/yuri/package.json b/packages/yuri/package.json index 136fa33ed42..39e52c29638 100644 --- a/packages/yuri/package.json +++ b/packages/yuri/package.json @@ -29,7 +29,7 @@ "scripts": { "clean": "rimraf dist", "build": "rollup -c", - "lernabuild": "rollup -c", + "cibuild_step1": "rollup -c", "test": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.mjs --require @babel/register", "pubtest": "npm publish --registry http://localhost:6662", "pubforce": "npm publish",