Skip to content

Commit

Permalink
Add package-lock, use npm run
Browse files Browse the repository at this point in the history
gpoitch committed Aug 11, 2022
1 parent 5fc54ab commit 87a046f
Showing 3 changed files with 16,942 additions and 4,175 deletions.
13,109 changes: 13,109 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -11,17 +11,17 @@
},
"scripts": {
"start": "rollup -c --watch",
"test:ci": "yarn build:docs && yarn build && testem ci -f testem-ci.js",
"test": "yarn format && yarn build && testem ci -f testem.js",
"test:ci": "npm run build:docs && npm run build && testem ci -f testem-ci.js",
"test": "npm run format && npm run build && testem ci -f testem.js",
"lint": "prettier src/**/*.{js,ts} --check && eslint src/**/*.{js,ts}",
"format": "prettier src --write",
"build": "rollup -c",
"build:docs": "jsdoc -c ./.jsdoc",
"build:website": "yarn build:docs && yarn build && ./bin/build-website.sh",
"build:website": "npm run build:docs && npm run build && ./bin/build-website.sh",
"deploy:website": "./bin/deploy-website.sh",
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s",
"version": "yarn update-changelog && git add CHANGELOG.md",
"prepublishOnly": "yarn build"
"version": "npm run update-changelog && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"keywords": [
"html",
7,998 changes: 3,828 additions & 4,170 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 87a046f

Please sign in to comment.