Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Create a developer mode command to ease development #295

Merged
merged 2 commits into from
Mar 16, 2021
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v1.1.0...master)

* [#295](https://github.com/mozilla-rally/rally-core-addon/pull/295): Enable watching the repository and a better developer workflow using `npm run watch`.

# v1.1.0 (2021-03-10)

[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v1.0.0...v1.1.0)
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
"test": "npm run --silent skip-taskcluster || (npm run test-addon && npm run test-support-library)",
"test-addon": "npm run --silent skip-taskcluster || (mocha --unhandled-rejections=strict --require \"./tests/hooks.js\" \"./tests/core-addon/unit/*.js\")",
"test-integration": "npm run --silent skip-taskcluster || (npm run build && mocha --unhandled-rejections=strict --timeout 30000 \"./tests/core-addon/integration/*.js\")",
"test-support-library": "npm run --silent skip-taskcluster || (mocha --unhandled-rejections=strict --require \"./tests/hooks.js\" \"./tests/support/*.mjs\")"
"test-support-library": "npm run --silent skip-taskcluster || (mocha --unhandled-rejections=strict --require \"./tests/hooks.js\" \"./tests/support/*.mjs\")",
"watch": "npm-run-all --parallel watch-ui watch-addon watch-webext",
"watch-ui": "rollup -c -w",
"watch-addon": "rollup -c rollup.config.addon.js -w --config-disable-remote-settings --config-studies-list-url=/public/locally-available-studies.json",
"watch-webext": "web-ext run --watch-file public/build/build.js --watch-file public/addon-build/background.js --watch-file public/addon-build/content-script.js"
},
"devDependencies": {
"@babel/core": "^7.13.10",
Expand Down