@systemfsoftware/all 1.1.0 → 1.1.1
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.
- package/CHANGELOG.md +6 -0
- package/dist/index.mjs +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @systemfsoftware/all
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Narrow @std ban to modules that overlap with Effect (fs → FileSystem, path → Path, encoding → Encoding, streams → Stream); other @std packages (crypto, dotenv, assert, testing, etc.) are now allowed
|
|
8
|
+
|
|
3
9
|
## 1.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.mjs
CHANGED
|
@@ -62,8 +62,8 @@ const rules = {
|
|
|
62
62
|
message: "Importing Node.js builtins without the \"node:\" prefix is forbidden (e.g. \"fs\") — use \"@effect/platform\" or a Web Standard API instead. Even \"node:fs\" is forbidden."
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
|
-
regex: "^@std/(?:
|
|
66
|
-
message: "Importing @std modules that mirror
|
|
65
|
+
regex: "^@std/(?:encoding|fs|path|streams)(?:/.*)?$",
|
|
66
|
+
message: "Importing @std modules that mirror Effect services (encoding → Encoding, fs → FileSystem, path → Path, streams → Stream) is forbidden — use the corresponding Effect module instead."
|
|
67
67
|
}
|
|
68
68
|
] }]
|
|
69
69
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/all",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"author": "Ryan Lee <drdgvhbh@gmail.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@systemfsoftware/oxlint-plugin": "^2.1.3",
|
|
31
|
-
"@systemfsoftware/oxlint-plugin-
|
|
31
|
+
"@systemfsoftware/oxlint-plugin-cell-vocabulary": "^1.2.4",
|
|
32
32
|
"@systemfsoftware/oxlint-plugin-effect-dmmf": "^5.1.0",
|
|
33
33
|
"@systemfsoftware/oxlint-plugin-effect-entrypoint": "^1.0.7",
|
|
34
|
-
"@systemfsoftware/oxlint-plugin-
|
|
34
|
+
"@systemfsoftware/oxlint-plugin-effect-schema": "^5.0.1",
|
|
35
35
|
"@systemfsoftware/oxlint-plugin-effect-workflow": "^4.1.0",
|
|
36
|
-
"@systemfsoftware/oxlint-plugin-property-testing": "^1.3.3",
|
|
37
36
|
"@systemfsoftware/oxlint-plugin-recommended": "^1.1.4",
|
|
37
|
+
"@systemfsoftware/oxlint-plugin-property-testing": "^1.3.3",
|
|
38
38
|
"@systemfsoftware/oxlint-plugin-test-hygiene": "^1.1.7",
|
|
39
39
|
"@systemfsoftware/oxlint-plugin-test-placement": "^3.2.2"
|
|
40
40
|
},
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"rimraf": "^6.1.3",
|
|
48
48
|
"tsdown": "^0.22.14",
|
|
49
49
|
"typescript": "^7",
|
|
50
|
-
"@systemfsoftware/
|
|
51
|
-
"@systemfsoftware/
|
|
50
|
+
"@systemfsoftware/tsconfig": "^1.3.3",
|
|
51
|
+
"@systemfsoftware/oxlint-config": "^0.1.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"effect": "^4.0.0-rc.112",
|