@yarn-tool/static-file 3.0.5 → 3.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,21 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.6](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@3.0.5...@yarn-tool/static-file@3.0.6) (2026-03-04)
7
+
8
+
9
+ ### BREAKING CHANGES
10
+
11
+ * 在 test、lint 及 lerna 相關腳本結尾添加 `--` 以確保額外參數能正確傳遞。
12
+
13
+
14
+
15
+ ### 🐛 Bug Fixes
16
+
17
+ * 在 test、lint 及 lerna 相關腳本結尾添加 `--` 以確保額外參數能正確傳遞。 ([88b7b15](https://github.com/bluelovers/ws-yarn-workspaces/commit/88b7b1535bbda94526591cbb4231b6040df11d4e))
18
+
19
+
20
+
6
21
  ## [3.0.5](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@3.0.4...@yarn-tool/static-file@3.0.5) (2026-03-02)
7
22
 
8
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
6
6
  "bugs": {
@@ -17,7 +17,7 @@
17
17
  "scripts": {
18
18
  "coverage": "npx nyc npm run test",
19
19
  "lint": "npx eslint **/*.ts",
20
- "test": "echo \"Error: no test specified\"",
20
+ "test": "node --run test:jest --",
21
21
  "test:jest": "jest --passWithNoTests",
22
22
  "test:jest:coverage": "yarn run test:jest -- --coverage",
23
23
  "test:jest:snapshot": "yarn run test:jest -- -u",
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "ae9b0817b25b1019ba68c88e541bbffc7d84047c"
41
+ "gitHead": "c4f430d52167892d911abbb9af9ef6d80e2355da"
42
42
  }