@mxpicture/gcp-functions-fs 1.1.91 → 1.2.2
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/dist/path/index.d.ts +2 -0
- package/dist/path/index.d.ts.map +1 -0
- package/dist/path/index.js +3 -0
- package/dist/path/index.js.map +1 -0
- package/dist/path/path.common.d.ts +5 -0
- package/dist/path/path.common.d.ts.map +1 -0
- package/dist/path/path.common.js +6 -0
- package/dist/path/path.common.js.map +1 -0
- package/package.json +5 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/path/index.ts"],"names":[],"mappings":"AACA,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/path/index.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/** Absolute path to the `packages` directory that contains all workspace packages. */
|
|
2
|
+
export declare const packagesDir: string;
|
|
3
|
+
/** Absolute path to the repository root (parent of `packages`). */
|
|
4
|
+
export declare const repoRoot: string;
|
|
5
|
+
//# sourceMappingURL=path.common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"path.common.d.ts","sourceRoot":"","sources":["../../src/path/path.common.ts"],"names":[],"mappings":"AAEA,sFAAsF;AACtF,eAAO,MAAM,WAAW,QAA2C,CAAC;AAEpE,mEAAmE;AACnE,eAAO,MAAM,QAAQ,QAA6B,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { resolve } from "node:path";
|
|
2
|
+
/** Absolute path to the `packages` directory that contains all workspace packages. */
|
|
3
|
+
export const packagesDir = resolve(import.meta.dirname, "../../..");
|
|
4
|
+
/** Absolute path to the repository root (parent of `packages`). */
|
|
5
|
+
export const repoRoot = resolve(packagesDir, "..");
|
|
6
|
+
//# sourceMappingURL=path.common.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"path.common.js","sourceRoot":"","sources":["../../src/path/path.common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAEpC,sFAAsF;AACtF,MAAM,CAAC,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;AAEpE,mEAAmE;AACnE,MAAM,CAAC,MAAM,QAAQ,GAAG,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mxpicture/gcp-functions-fs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Tools for google cloud functions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "MXPicture",
|
|
@@ -10,9 +10,10 @@
|
|
|
10
10
|
"url": "git+https://github.com/MXPicture/npm-gcp-functions.git"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
|
-
"./history": "./dist/history/index.js",
|
|
14
13
|
"./config": "./dist/config/index.js",
|
|
15
|
-
"./package.json": "./package.json"
|
|
14
|
+
"./package.json": "./package.json",
|
|
15
|
+
"./history": "./dist/history/index.js",
|
|
16
|
+
"./path": "./dist/path/index.js"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist"
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"access": "public"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@mxpicture/build-api": "^0.
|
|
35
|
+
"@mxpicture/build-api": "^0.3.24",
|
|
35
36
|
"json5": "^2.2.3",
|
|
36
37
|
"zod": "^4.3.6"
|
|
37
38
|
},
|