Skip to content

Commit 6efe9dd

Browse files
committed
lint
1 parent 968cada commit 6efe9dd

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/test-snaps/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"lint:eslint": "eslint . --cache",
3333
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
3434
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
35+
"publish:preview": "yarn npm publish --tag preview",
3536
"since-latest-release": "../../scripts/since-latest-release.sh",
3637
"start": "yarn workspaces foreach --parallel --interlaced --all --include \"@metamask/test-snaps\" --include \"@metamask/example-snaps\" run start:test",
3738
"start:test": "cross-env NODE_ENV=development webpack serve",
@@ -122,6 +123,7 @@
122123
"node": "^20 || >=22"
123124
},
124125
"publishConfig": {
125-
"access": "public"
126+
"access": "public",
127+
"registry": "https://registry.npmjs.org/"
126128
}
127129
}

yarn.config.cjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ module.exports = defineConfig({
109109
if (
110110
!isPrivate &&
111111
!isExample &&
112-
workspace.cwd !== 'packages/snaps-sandbox'
112+
workspace.cwd !== 'packages/snaps-sandbox' &&
113+
workspace.cwd !== 'packages/test-snaps'
113114
) {
114115
// All non-root, non-example packages must set up ESM- and
115116
// CommonJS-compatible exports correctly.

0 commit comments

Comments
 (0)