@push.rocks/qenv 6.1.4 → 6.1.5
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/.smartconfig.json +17 -5
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/npmextra.json +0 -7
- package/package.json +13 -14
- package/ts/00_commitinfo_data.ts +1 -1
package/.smartconfig.json
CHANGED
|
@@ -19,11 +19,23 @@
|
|
|
19
19
|
]
|
|
20
20
|
},
|
|
21
21
|
"release": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
"targets": {
|
|
23
|
+
"git": {
|
|
24
|
+
"enabled": true,
|
|
25
|
+
"remote": "origin",
|
|
26
|
+
"pushBranch": true,
|
|
27
|
+
"pushTags": true
|
|
28
|
+
},
|
|
29
|
+
"npm": {
|
|
30
|
+
"enabled": true,
|
|
31
|
+
"registries": [
|
|
32
|
+
"https://verdaccio.lossless.digital",
|
|
33
|
+
"https://registry.npmjs.org"
|
|
34
|
+
],
|
|
35
|
+
"accessLevel": "public",
|
|
36
|
+
"alreadyPublished": "success"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
27
39
|
}
|
|
28
40
|
},
|
|
29
41
|
"@git.zone/tsdoc": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@push.rocks/qenv',
|
|
6
|
-
version: '6.1.
|
|
6
|
+
version: '6.1.5',
|
|
7
7
|
description: 'A module for easily handling environment variables in Node.js projects with support for .yml and .json configuration.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVIQUF1SDtDQUNySSxDQUFBIn0=
|
package/npmextra.json
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@push.rocks/qenv",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A module for easily handling environment variables in Node.js projects with support for .yml and .json configuration.",
|
|
6
6
|
"main": "dist_ts/index.js",
|
|
7
7
|
"typings": "dist_ts/index.d.ts",
|
|
8
8
|
"type": "module",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"test": "(tstest test/ --verbose --testlog --timeout 20)",
|
|
11
|
-
"build": "tsbuild --web",
|
|
12
|
-
"format": "gitzone format",
|
|
13
|
-
"buildDocs": "tsdoc"
|
|
14
|
-
},
|
|
15
9
|
"repository": {
|
|
16
10
|
"type": "git",
|
|
17
11
|
"url": "https://code.foss.global/push.rocks/qenv.git"
|
|
@@ -32,13 +26,13 @@
|
|
|
32
26
|
},
|
|
33
27
|
"homepage": "https://code.foss.global/push.rocks/qenv",
|
|
34
28
|
"devDependencies": {
|
|
35
|
-
"@git.zone/tsbuild": "^4.4.
|
|
36
|
-
"@git.zone/tsrun": "^2.0.
|
|
37
|
-
"@git.zone/tstest": "^
|
|
38
|
-
"@types/node": "^
|
|
29
|
+
"@git.zone/tsbuild": "^4.4.2",
|
|
30
|
+
"@git.zone/tsrun": "^2.0.6",
|
|
31
|
+
"@git.zone/tstest": "^4.0.0",
|
|
32
|
+
"@types/node": "^26.4.1"
|
|
39
33
|
},
|
|
40
34
|
"dependencies": {
|
|
41
|
-
"@api.global/typedrequest": "^
|
|
35
|
+
"@api.global/typedrequest": "^8.0.3",
|
|
42
36
|
"@configvault.io/interfaces": "^1.0.17",
|
|
43
37
|
"@push.rocks/smartlog": "^3.2.2",
|
|
44
38
|
"@push.rocks/smartpath": "^6.0.0",
|
|
@@ -61,5 +55,10 @@
|
|
|
61
55
|
"browserslist": [
|
|
62
56
|
"last 1 chrome versions"
|
|
63
57
|
],
|
|
64
|
-
"
|
|
65
|
-
|
|
58
|
+
"scripts": {
|
|
59
|
+
"test": "(tstest test/ --verbose --testlog --timeout 20)",
|
|
60
|
+
"build": "tsbuild --web",
|
|
61
|
+
"format": "gitzone format",
|
|
62
|
+
"buildDocs": "tsdoc"
|
|
63
|
+
}
|
|
64
|
+
}
|
package/ts/00_commitinfo_data.ts
CHANGED