@ctx-core/env 16.0.19 → 16.0.22
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 +26 -0
- package/package.json +51 -52
- package/ctx-core-env-16.0.19.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @ctx-core/env
|
|
2
2
|
|
|
3
|
+
## 16.0.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- svelte: ^3.47.0 -> ^3.48.0
|
|
8
|
+
|
|
9
|
+
## 16.0.21
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- update dependencies
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @ctx-core/error@11.4.6
|
|
16
|
+
|
|
17
|
+
## 16.0.20
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- @ctx-core/function: 20.7.1
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @ctx-core/error@11.4.5
|
|
25
|
+
- @ctx-core/nanostores@1.0.16
|
|
26
|
+
- @ctx-core/object@22.1.8
|
|
27
|
+
- @ctx-core/function@20.7.2
|
|
28
|
+
|
|
3
29
|
## 16.0.19
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,54 +1,53 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"sideEffects": false
|
|
2
|
+
"name": "@ctx-core/env",
|
|
3
|
+
"version": "16.0.22",
|
|
4
|
+
"description": "ctx-core env",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ctx-core",
|
|
7
|
+
"env"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/ctx-core/env#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/ctx-core/env/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/ctx-core/env.git"
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"author": "Brian Takita",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"types": "./src/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": "./src/index.js",
|
|
23
|
+
"./package.json": "./package.json"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@ctx-core/error": "^11.4.6",
|
|
27
|
+
"@ctx-core/function": "^20.7.1",
|
|
28
|
+
"@ctx-core/nanostores": "^1.0.16",
|
|
29
|
+
"@ctx-core/object": "^22.1.9",
|
|
30
|
+
"svelte": "^3.48.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"c8": "^7.11.2",
|
|
34
|
+
"check-dts": "^0.6.7",
|
|
35
|
+
"tsm": "^2.2.1",
|
|
36
|
+
"typescript": "next",
|
|
37
|
+
"uvu": "^0.5.3"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"cache": "~/.npm"
|
|
42
|
+
},
|
|
43
|
+
"svelte": "./src/index.js",
|
|
44
|
+
"sideEffects": false,
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": ":",
|
|
47
|
+
"clean": ":",
|
|
48
|
+
"exec": "$@",
|
|
49
|
+
"test": "pnpm test-unit && check-dts",
|
|
50
|
+
"test-unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
|
|
51
|
+
"test-unit-coverage": "c8 pnpm test-unit"
|
|
52
|
+
}
|
|
54
53
|
}
|
package/ctx-core-env-16.0.19.tgz
DELETED
|
Binary file
|