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

Commit

Permalink
Merge pull request #295 from Dexterp37/fix_dev_cmd
Browse files Browse the repository at this point in the history
Create a developer mode command to ease development
  • Loading branch information
Dexterp37 authored Mar 16, 2021
2 parents 6b6ba81 + 8e1b67a commit fe33dae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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

0 comments on commit fe33dae

Please sign in to comment.