Skip to content

Commit

Permalink
refactor(pkg): order tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
moklick committed Jan 11, 2021
1 parent 8571233 commit de81743
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
16 changes: 6 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"start": "rollup -w -c",
"start:examples": "rollup -c rollup.examples.js -w",
"build:examples": "rollup -c rollup.examples.js --environment NODE_ENV:production",
"start:testserver": "npm run build && rollup -c rollup.examples.js -w --environment NODE_ENV:testing",
"dev": "npm run start:examples",
"start:testserver": "npm run build && rollup -c rollup.examples.js -w --environment NODE_ENV:testing",
"build:dev": "npm i --legacy-deps && npm run build:examples",
"dev:wait": "start-server-and-test start:testserver http-get://localhost:3000",
"build:dev": "npm install --legacy-peer-deps && npm run build && npm run build:examples",
"cy:open": "cypress open",
"cypress": "npm run dev:wait cy:open",
"test": "npm run dev:wait test:chrome",
"test:chrome": "cypress run --browser chrome --headless",
"test:firefox": "cypress run --browser firefox",
"test:all": "npm run test:chrome && npm run test:firefox",
"test": "npm run dev:wait test:chrome",
"cypress": "npm run dev:wait cy:open",
"cy:open": "cypress open",
"release": "npm run test && release-it",
"release:notest": "release-it",
"release:next": "release-it --preRelease=next"
Expand Down

0 comments on commit de81743

Please sign in to comment.