@baeta/util-path 1.0.1 → 2.0.0-next.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 +20 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/index.d.ts +0 -75
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @baeta/util-path
|
|
2
2
|
|
|
3
|
+
## 2.0.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix release version
|
|
8
|
+
|
|
9
|
+
## 2.0.0-next.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- [#214](https://github.com/andreisergiu98/baeta/pull/214) [`31d1a50`](https://github.com/andreisergiu98/baeta/commit/31d1a509f96535b43ae85d19c770eb1a5f09dc94) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Baeta v2 – major refactor
|
|
14
|
+
- **Side-effect-free type generation & resolver definitions.**
|
|
15
|
+
The types generator and resolver definitions were reworked to be side-effect free, improving type safety.
|
|
16
|
+
- **Stricter type safety.**
|
|
17
|
+
You must now **explicitly define resolvers for every field** during development—breakages that used to surface at runtime are now caught at compile time.
|
|
18
|
+
- **Removed `@baeta/compiler`.**
|
|
19
|
+
Since modern runtimes can execute TypeScript natively, the separate compiler package is no longer needed. Use your runtime’s native TS support or your existing build setup.
|
|
20
|
+
- **Subscriptions update.**
|
|
21
|
+
`@baeta/subscriptions-pubsub` now targets **`graphql-subscriptions` v3**.
|
|
22
|
+
|
|
3
23
|
## 1.0.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../index.ts"],"sourcesContent":["import path, { type ParsedPath } from 'node:path';\nimport upath from 'upath';\n\nexport function posixPath(pathname: string) {\n\treturn pathname.split(path.win32.sep).join(path.posix.sep);\n}\n\nexport function winPath(pathname: string) {\n\treturn pathname.split(path.posix.sep).join(path.win32.sep);\n}\n\nexport const addExt = upath.addExt;\nexport const basename = upath.basename;\nexport const changeExt = upath.changeExt;\nexport const defaultExt = upath.defaultExt;\nexport const delimiter = upath.delimiter;\nexport const dirname = upath.dirname;\nexport const extname = upath.extname;\n\n/**\n * Returns a path string from an object - the opposite of parse().\n *\n * @param pathObject path to evaluate.\n */\nexport const format = upath.format as (pathObject: ParsedPath) => string;\n\nexport const isAbsolute = upath.isAbsolute;\nexport const join = upath.join;\n\n/**\n * Exactly like path.join(), but it keeps the first meaningful ./.\n *\n * Note that the unix / is returned everywhere, so windows \\ is always converted to unix /.\n *\n * @param paths string paths to join\n */\
|
|
1
|
+
{"version":3,"sources":["../index.ts"],"sourcesContent":["import path, { type ParsedPath } from 'node:path';\nimport upath from 'upath';\n\nexport function posixPath(pathname: string) {\n\treturn pathname.split(path.win32.sep).join(path.posix.sep);\n}\n\nexport function winPath(pathname: string) {\n\treturn pathname.split(path.posix.sep).join(path.win32.sep);\n}\n\nexport const addExt = upath.addExt;\nexport const basename = upath.basename;\nexport const changeExt = upath.changeExt;\nexport const defaultExt = upath.defaultExt;\nexport const delimiter = upath.delimiter;\nexport const dirname = upath.dirname;\nexport const extname = upath.extname;\n\n/**\n * Returns a path string from an object - the opposite of parse().\n *\n * @param pathObject path to evaluate.\n */\nexport const format = upath.format as (pathObject: ParsedPath) => string;\n\nexport const isAbsolute = upath.isAbsolute;\nexport const join = upath.join;\n\n/**\n * Exactly like path.join(), but it keeps the first meaningful ./.\n *\n * Note that the unix / is returned everywhere, so windows \\ is always converted to unix /.\n *\n * @param paths string paths to join\n */\nexport const joinSafe = upath.joinSafe as (...paths: string[]) => string;\n\nexport const normalize = upath.normalize;\nexport const normalizeSafe = upath.normalizeSafe;\nexport const normalizeTrim = upath.normalizeTrim;\nexport const parse = upath.parse;\nexport const posix = upath.posix;\nexport const relative = upath.relative;\n\n/**\n * Removes the specific ext extension from filename, if it has it. Otherwise it leaves it as is. As in all upath functions, it be .ext or ext.\n *\n * @param filename string filename to remove extension to\n * @param ext string extension to remove\n */\nexport const removeExt = upath.removeExt as (filename: string, ext: string) => string;\n\nexport const resolve = upath.resolve;\nexport const sep = upath.sep;\nexport const toUnix = upath.toUnix;\nexport const trimExt = upath.trimExt;\nexport const win32 = upath.win32;\n\nexport default {\n\taddExt,\n\tbasename,\n\tchangeExt,\n\tdefaultExt,\n\tdelimiter,\n\tdirname,\n\textname,\n\tformat,\n\tisAbsolute,\n\tjoin,\n\tjoinSafe,\n\tnormalize,\n\tnormalizeSafe,\n\tnormalizeTrim,\n\tparse,\n\tposix,\n\trelative,\n\tremoveExt,\n\tresolve,\n\tsep,\n\ttoUnix,\n\ttrimExt,\n\twin32,\n\tposixPath,\n\twinPath,\n};\n"],"mappings":";AAAA,OAAO,UAA+B;AACtC,OAAO,WAAW;AAEX,SAAS,UAAU,UAAkB;AAC3C,SAAO,SAAS,MAAM,KAAK,MAAM,GAAG,EAAE,KAAK,KAAK,MAAM,GAAG;AAC1D;AAEO,SAAS,QAAQ,UAAkB;AACzC,SAAO,SAAS,MAAM,KAAK,MAAM,GAAG,EAAE,KAAK,KAAK,MAAM,GAAG;AAC1D;AAEO,IAAM,SAAS,MAAM;AACrB,IAAM,WAAW,MAAM;AACvB,IAAM,YAAY,MAAM;AACxB,IAAM,aAAa,MAAM;AACzB,IAAM,YAAY,MAAM;AACxB,IAAM,UAAU,MAAM;AACtB,IAAM,UAAU,MAAM;AAOtB,IAAM,SAAS,MAAM;AAErB,IAAM,aAAa,MAAM;AACzB,IAAM,OAAO,MAAM;AASnB,IAAM,WAAW,MAAM;AAEvB,IAAM,YAAY,MAAM;AACxB,IAAM,gBAAgB,MAAM;AAC5B,IAAM,gBAAgB,MAAM;AAC5B,IAAM,QAAQ,MAAM;AACpB,IAAM,QAAQ,MAAM;AACpB,IAAM,WAAW,MAAM;AAQvB,IAAM,YAAY,MAAM;AAExB,IAAM,UAAU,MAAM;AACtB,IAAM,MAAM,MAAM;AAClB,IAAM,SAAS,MAAM;AACrB,IAAM,UAAU,MAAM;AACtB,IAAM,QAAQ,MAAM;AAE3B,IAAO,gBAAQ;AAAA,EACd;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACD;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baeta/util-path",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-next.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"baeta",
|
|
6
6
|
"graphql",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
"@baeta/builder": "^0.0.0",
|
|
51
51
|
"@baeta/testing": "^0.0.0",
|
|
52
52
|
"@baeta/tsconfig": "^0.0.0",
|
|
53
|
-
"@types/node": "^22.
|
|
54
|
-
"typescript": "^5.
|
|
53
|
+
"@types/node": "^22.18.11",
|
|
54
|
+
"typescript": "^5.9.3"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
|
-
"node": ">=22.
|
|
57
|
+
"node": ">=22.20.0"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public",
|
package/dist/index.d.ts
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { ParsedPath } from 'node:path';
|
|
2
|
-
import upath from 'upath';
|
|
3
|
-
|
|
4
|
-
declare function posixPath(pathname: string): string;
|
|
5
|
-
declare function winPath(pathname: string): string;
|
|
6
|
-
declare const addExt: typeof upath.addExt;
|
|
7
|
-
declare const basename: typeof upath.basename;
|
|
8
|
-
declare const changeExt: typeof upath.changeExt;
|
|
9
|
-
declare const defaultExt: typeof upath.defaultExt;
|
|
10
|
-
declare const delimiter: string;
|
|
11
|
-
declare const dirname: typeof upath.dirname;
|
|
12
|
-
declare const extname: typeof upath.extname;
|
|
13
|
-
/**
|
|
14
|
-
* Returns a path string from an object - the opposite of parse().
|
|
15
|
-
*
|
|
16
|
-
* @param pathObject path to evaluate.
|
|
17
|
-
*/
|
|
18
|
-
declare const format: (pathObject: ParsedPath) => string;
|
|
19
|
-
declare const isAbsolute: typeof upath.isAbsolute;
|
|
20
|
-
declare const join: typeof upath.join;
|
|
21
|
-
/**
|
|
22
|
-
* Exactly like path.join(), but it keeps the first meaningful ./.
|
|
23
|
-
*
|
|
24
|
-
* Note that the unix / is returned everywhere, so windows \ is always converted to unix /.
|
|
25
|
-
*
|
|
26
|
-
* @param paths string paths to join
|
|
27
|
-
*/
|
|
28
|
-
declare const joinSafe: (...paths: any[]) => string;
|
|
29
|
-
declare const normalize: typeof upath.normalize;
|
|
30
|
-
declare const normalizeSafe: typeof upath.normalizeSafe;
|
|
31
|
-
declare const normalizeTrim: typeof upath.normalizeTrim;
|
|
32
|
-
declare const parse: typeof upath.parse;
|
|
33
|
-
declare const posix: typeof upath.posix;
|
|
34
|
-
declare const relative: typeof upath.relative;
|
|
35
|
-
/**
|
|
36
|
-
* Removes the specific ext extension from filename, if it has it. Otherwise it leaves it as is. As in all upath functions, it be .ext or ext.
|
|
37
|
-
*
|
|
38
|
-
* @param filename string filename to remove extension to
|
|
39
|
-
* @param ext string extension to remove
|
|
40
|
-
*/
|
|
41
|
-
declare const removeExt: (filename: string, ext: string) => string;
|
|
42
|
-
declare const resolve: typeof upath.resolve;
|
|
43
|
-
declare const sep: string;
|
|
44
|
-
declare const toUnix: typeof upath.toUnix;
|
|
45
|
-
declare const trimExt: typeof upath.trimExt;
|
|
46
|
-
declare const win32: typeof upath.win32;
|
|
47
|
-
declare const _default: {
|
|
48
|
-
addExt: typeof upath.addExt;
|
|
49
|
-
basename: typeof upath.basename;
|
|
50
|
-
changeExt: typeof upath.changeExt;
|
|
51
|
-
defaultExt: typeof upath.defaultExt;
|
|
52
|
-
delimiter: string;
|
|
53
|
-
dirname: typeof upath.dirname;
|
|
54
|
-
extname: typeof upath.extname;
|
|
55
|
-
format: (pathObject: ParsedPath) => string;
|
|
56
|
-
isAbsolute: typeof upath.isAbsolute;
|
|
57
|
-
join: typeof upath.join;
|
|
58
|
-
joinSafe: (...paths: any[]) => string;
|
|
59
|
-
normalize: typeof upath.normalize;
|
|
60
|
-
normalizeSafe: typeof upath.normalizeSafe;
|
|
61
|
-
normalizeTrim: typeof upath.normalizeTrim;
|
|
62
|
-
parse: typeof upath.parse;
|
|
63
|
-
posix: typeof upath.posix;
|
|
64
|
-
relative: typeof upath.relative;
|
|
65
|
-
removeExt: (filename: string, ext: string) => string;
|
|
66
|
-
resolve: typeof upath.resolve;
|
|
67
|
-
sep: string;
|
|
68
|
-
toUnix: typeof upath.toUnix;
|
|
69
|
-
trimExt: typeof upath.trimExt;
|
|
70
|
-
win32: typeof upath.win32;
|
|
71
|
-
posixPath: typeof posixPath;
|
|
72
|
-
winPath: typeof winPath;
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
export { addExt, basename, changeExt, _default as default, defaultExt, delimiter, dirname, extname, format, isAbsolute, join, joinSafe, normalize, normalizeSafe, normalizeTrim, parse, posix, posixPath, relative, removeExt, resolve, sep, toUnix, trimExt, win32, winPath };
|