@stryke/fs 0.33.57 → 0.33.58
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
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Stryke - Fs
|
|
4
4
|
|
|
5
|
+
## [0.33.58](https://github.com/storm-software/stryke/releases/tag/fs%400.33.58) (03/13/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **string-format** to **v0.17.4**
|
|
10
|
+
- Updated **type-checks** to **v0.5.39**
|
|
11
|
+
- Updated **convert** to **v0.6.54**
|
|
12
|
+
- Updated **helpers** to **v0.10.4**
|
|
13
|
+
- Updated **types** to **v0.10.53**
|
|
14
|
+
- Updated **json** to **v0.14.8**
|
|
15
|
+
- Updated **path** to **v0.27.0**
|
|
16
|
+
|
|
5
17
|
## [0.33.57](https://github.com/storm-software/stryke/releases/tag/fs%400.33.57) (03/11/2026)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/dist/copy-file.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
|
|
2
2
|
const require_join_paths = require('./path/src/join-paths.cjs');
|
|
3
|
-
const require_correct_path = require('./path/src/correct-path.cjs');
|
|
4
3
|
const require_is_string = require('./type-checks/src/is-string.cjs');
|
|
4
|
+
const require_correct_path = require('./path/src/correct-path.cjs');
|
|
5
5
|
const require_file_path_fns = require('./path/src/file-path-fns.cjs');
|
|
6
6
|
const require_replace = require('./path/src/replace.cjs');
|
|
7
7
|
const require_resolve_parent_path = require('./path/src/resolve-parent-path.cjs');
|
package/dist/copy-file.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { joinPaths } from "./path/src/join-paths.mjs";
|
|
2
|
-
import { stripStars } from "./path/src/correct-path.mjs";
|
|
3
2
|
import { isString } from "./type-checks/src/is-string.mjs";
|
|
3
|
+
import { stripStars } from "./path/src/correct-path.mjs";
|
|
4
4
|
import { findFilePath, hasFileExtension } from "./path/src/file-path-fns.mjs";
|
|
5
5
|
import { replacePath } from "./path/src/replace.mjs";
|
|
6
6
|
import { resolveParentPath } from "./path/src/resolve-parent-path.mjs";
|
|
@@ -2,8 +2,8 @@ const require_rolldown_runtime = require('../../_virtual/rolldown_runtime.cjs');
|
|
|
2
2
|
const require_cwd = require('./cwd.cjs');
|
|
3
3
|
const require_regex = require('./regex.cjs');
|
|
4
4
|
const require_is_type = require('./is-type.cjs');
|
|
5
|
-
const require_correct_path = require('./correct-path.cjs');
|
|
6
5
|
const require_is_set_string = require('../../type-checks/src/is-set-string.cjs');
|
|
6
|
+
const require_correct_path = require('./correct-path.cjs');
|
|
7
7
|
const require_base = require('../../types/src/base.cjs');
|
|
8
8
|
let node_path = require("node:path");
|
|
9
9
|
node_path = require_rolldown_runtime.__toESM(node_path);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { cwd } from "./cwd.mjs";
|
|
2
2
|
import { FILE_EXTENSION_REGEX, FULL_FILE_EXTENSION_REGEX, ROOT_FOLDER_REGEX } from "./regex.mjs";
|
|
3
3
|
import { isAbsolute } from "./is-type.mjs";
|
|
4
|
-
import { normalizeString, normalizeWindowsPath } from "./correct-path.mjs";
|
|
5
4
|
import { isSetString } from "../../type-checks/src/is-set-string.mjs";
|
|
5
|
+
import { normalizeString, normalizeWindowsPath } from "./correct-path.mjs";
|
|
6
6
|
import { EMPTY_STRING } from "../../types/src/base.mjs";
|
|
7
7
|
|
|
8
8
|
//#region ../path/src/file-path-fns.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/fs",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.58",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.",
|
|
6
6
|
"repository": {
|
|
@@ -106,11 +106,11 @@
|
|
|
106
106
|
"dependencies": {
|
|
107
107
|
"@antfu/install-pkg": "^1.1.0",
|
|
108
108
|
"@ltd/j-toml": "^1.38.0",
|
|
109
|
-
"@storm-software/config-tools": "^1.189.
|
|
110
|
-
"@stryke/convert": "^0.6.
|
|
111
|
-
"@stryke/helpers": "^0.10.
|
|
112
|
-
"@stryke/path": "^0.
|
|
113
|
-
"@stryke/string-format": "^0.17.
|
|
109
|
+
"@storm-software/config-tools": "^1.189.28",
|
|
110
|
+
"@stryke/convert": "^0.6.54",
|
|
111
|
+
"@stryke/helpers": "^0.10.4",
|
|
112
|
+
"@stryke/path": "^0.27.0",
|
|
113
|
+
"@stryke/string-format": "^0.17.4",
|
|
114
114
|
"chalk": "^5.6.2",
|
|
115
115
|
"defu": "^6.1.4",
|
|
116
116
|
"glob": "^11.1.0",
|
|
@@ -129,5 +129,5 @@
|
|
|
129
129
|
"peerDependencies": { "nx": "^22.5.4" },
|
|
130
130
|
"peerDependenciesMeta": { "nx": { "optional": true } },
|
|
131
131
|
"publishConfig": { "access": "public" },
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "a1bde3f52c2327c62bee625670e6699a3c262345"
|
|
133
133
|
}
|