Skip to content

Commit

Permalink
Add since-latest-release script to match MetaMask/core (#2744)
Browse files Browse the repository at this point in the history
This adds the `since-latest-release` script, which is a copy of the
script in `MetaMask/core`. See MetaMask/core#1390 for more info.
  • Loading branch information
Mrtenz authored Sep 20, 2024
1 parent c26555e commit 8caef01
Show file tree
Hide file tree
Showing 47 changed files with 197 additions and 0 deletions.
7 changes: 7 additions & 0 deletions constraints.pro
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,13 @@ gen_enforced_field(WorkspaceCwd, 'scripts.changelog:update', ChangelogUpdateScri
relative_path(WorkspaceCwd, 'scripts/update-changelog.sh', BaseChangelogUpdateScript),
atomic_list_concat([BaseChangelogUpdateScript, ' ', WorkspacePackageName], ChangelogUpdateScript).

% The "since-latest-release" script for each published package must run a common
% script.
gen_enforced_field(WorkspaceCwd, 'scripts.since-latest-release', SinceLatestReleaseScript) :-
\+ workspace_field(WorkspaceCwd, 'private', true),
workspace_field(WorkspaceCwd, 'name', WorkspacePackageName),
relative_path(WorkspaceCwd, 'scripts/since-latest-release.sh', SinceLatestReleaseScript).

% The "lint:dependencies" script must be the same for all packages.
gen_enforced_field(WorkspaceCwd, 'scripts.lint:dependencies', 'depcheck') :-
WorkspaceCwd \= '.'.
Expand Down
1 change: 1 addition & 0 deletions packages/create-snap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
"publish:package": "../../scripts/publish-package.sh",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:post": "jest-it-up",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/bip32/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/bip44/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/browserify-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/browserify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/client-status/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/cronjobs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/dialogs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/ethereum-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/ethers-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/file-upload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/get-entropy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/get-file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/home-page/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/images/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/interactive-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/json-rpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/lifecycle-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/localization/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/manage-state/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/name-lookup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/network-access/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/notifications/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/preinstalled/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/rollup-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "yarn build --watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/send-flow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/signature-insights/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "yarn build:wasm && mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/examples/packages/webpack-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "webpack watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
Expand Down
1 change: 1 addition & 0 deletions packages/snaps-browserify-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:post": "jest-it-up",
Expand Down
1 change: 1 addition & 0 deletions packages/snaps-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:post": "jest-it-up",
Expand Down
Loading

0 comments on commit 8caef01

Please sign in to comment.