@ctx-core/core-js 11.0.28 → 11.0.32

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @ctx-core/core-js
2
2
 
3
+ ## 11.0.32
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: package.json: exports
8
+ - Updated dependencies
9
+ - @ctx-core/object@22.0.2
10
+ - @ctx-core/package@9.1.14
11
+
12
+ ## 11.0.31
13
+
14
+ ### Patch Changes
15
+
16
+ - package.json: svelte: ./dist/index.js
17
+ - Updated dependencies
18
+ - @ctx-core/object@22.0.1
19
+ - @ctx-core/package@9.1.13
20
+
21
+ ## 11.0.30
22
+
23
+ ### Patch Changes
24
+
25
+ - package.json: - module
26
+ - Updated dependencies
27
+ - Updated dependencies
28
+ - @ctx-core/object@22.0.0
29
+ - @ctx-core/package@9.1.11
30
+
31
+ ## 11.0.29
32
+
33
+ ### Patch Changes
34
+
35
+ - update dependencies
36
+
3
37
  ## 11.0.28
4
38
 
5
39
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/core-js",
3
- "version": "11.0.28",
3
+ "version": "11.0.32",
4
4
  "description": "ctx-core core-js",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -12,36 +12,36 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/ctx-core/core-js/issues"
15
+ "url": "https://github.com/ctx-core/core-js.git"
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "module": "./dist/index.js",
21
- "types": "./src/index.ts",
22
20
  "exports": {
23
21
  ".": {
24
- "require": "./dist/index.cjs",
25
- "import": "./dist/index.js"
22
+ "import": "./dist/index.js",
23
+ "types": "./src/index.ts"
26
24
  },
27
25
  "./package.json": "./package.json"
28
26
  },
29
27
  "dependencies": {
30
- "@ctx-core/object": "^21.0.30",
31
- "@ctx-core/package": "^9.1.9"
28
+ "@ctx-core/object": "^22.0.2",
29
+ "@ctx-core/package": "^9.1.14"
32
30
  },
33
31
  "devDependencies": {
34
- "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.118",
32
+ "@swc/cli": "^0.1.55",
33
+ "@swc/core": "^1.2.120",
34
+ "rimraf": "^3.0.2",
36
35
  "typescript": "next"
37
36
  },
38
37
  "publishConfig": {
39
38
  "access": "public",
40
39
  "cache": "~/.npm"
41
40
  },
41
+ "svelte": "./dist/index.js",
42
42
  "scripts": {
43
43
  "build": "npm run compile",
44
- "clean": "rm -rf dist",
44
+ "clean": "rimraf dist",
45
45
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
46
46
  "exec": "$@"
47
47
  }