Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Enforce public npm registry
registry = https://registry.npmjs.org/
ignore-scripts=true
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
"unit": "ava",
"unit-watch": "ava --watch",
"coverage": "nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\"",
"integration": "ava --config ava-integration.config.js",
"integration-internet-explorer": "ava --config ava-integration.config.js -- --browsers=IE",
"integration-saucelabs": "ava --config ava-integration.config.js -- --useSauceLabs=true",
"integration-prepare": "npx puppeteer browsers install chrome && webpack",
"integration": "npm run integration-prepare && ava --config ava-integration.config.js",
"integration-internet-explorer": "npm run integration-prepare && ava --config ava-integration.config.js -- --browsers=IE",
"integration-saucelabs": "npm run integration-prepare && ava --config ava-integration.config.js -- --useSauceLabs=true",
"dev": "webpack --watch --mode=development",
"prepare": "webpack",
"preversion": "npm test",
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
"prepublishOnly": "git push --follow-tags",
Expand Down