@ctx-core/env 16.0.5 → 16.0.8

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
@@ -1,5 +1,28 @@
1
1
  # @ctx-core/env
2
2
 
3
+ ## 16.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @ctx-core/nanostores@1.0.0
9
+
10
+ ## 16.0.7
11
+
12
+ ### Patch Changes
13
+
14
+ - update dependencies
15
+ - Updated dependencies
16
+ - @ctx-core/nanostores@0.7.5
17
+ - @ctx-core/object@22.1.1
18
+
19
+ ## 16.0.6
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @ctx-core/nanostores@0.7.0
25
+
3
26
  ## 16.0.5
4
27
 
5
28
  ### Patch Changes
package/COMMIT_EDITMSG ADDED
@@ -0,0 +1,3 @@
1
+
2
+
3
+
Binary file
package/package.json CHANGED
@@ -1,55 +1,56 @@
1
1
  {
2
- "name": "@ctx-core/env",
3
- "version": "16.0.5",
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
- ".": {
23
- "import": "./src/index.js"
24
- },
25
- "./package.json": "./package.json"
26
- },
27
- "dependencies": {
28
- "@ctx-core/error": "^11.4.0",
29
- "@ctx-core/function": "*",
30
- "@ctx-core/nanostores": "^0.6.0",
31
- "@ctx-core/object": "*",
32
- "svelte": "^3.46.4"
33
- },
34
- "devDependencies": {
35
- "c8": "^7.11.0",
36
- "check-dts": "^0.6.6",
37
- "tsm": "^2.2.1",
38
- "typescript": "next",
39
- "uvu": "^0.5.3"
40
- },
41
- "publishConfig": {
42
- "access": "public",
43
- "cache": "~/.npm"
44
- },
45
- "svelte": "./src/index.js",
46
- "sideEffects": false,
47
- "scripts": {
48
- "build": ":",
49
- "clean": ":",
50
- "exec": "$@",
51
- "test": "pnpm test-unit && check-dts",
52
- "test-unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
53
- "test-unit-coverage": "c8 pnpm test-unit"
54
- }
55
- }
2
+ "name": "@ctx-core/env",
3
+ "version": "16.0.8",
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
+ ".": {
23
+ "import": "./src/index.js"
24
+ },
25
+ "./package.json": "./package.json"
26
+ },
27
+ "scripts": {
28
+ "build": ":",
29
+ "clean": ":",
30
+ "exec": "$@",
31
+ "prepublishOnly": "npm run clean && npm run build && npm run test",
32
+ "test": "pnpm test-unit && check-dts",
33
+ "test-unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
34
+ "test-unit-coverage": "c8 pnpm test-unit"
35
+ },
36
+ "dependencies": {
37
+ "@ctx-core/error": "^11.4.0",
38
+ "@ctx-core/function": "*",
39
+ "@ctx-core/nanostores": "^1.0.0",
40
+ "@ctx-core/object": "*",
41
+ "svelte": "^3.46.4"
42
+ },
43
+ "devDependencies": {
44
+ "c8": "^7.11.0",
45
+ "check-dts": "^0.6.6",
46
+ "tsm": "^2.2.1",
47
+ "typescript": "next",
48
+ "uvu": "^0.5.3"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public",
52
+ "cache": "~/.npm"
53
+ },
54
+ "svelte": "./src/index.js",
55
+ "sideEffects": false
56
+ }