@ctx-core/core-js 11.0.25 → 11.0.29

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,34 @@
1
1
  # @ctx-core/core-js
2
2
 
3
+ ## 11.0.29
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+
9
+ ## 11.0.28
10
+
11
+ ### Patch Changes
12
+
13
+ - package.json: - "main": explicitly not support cjs
14
+ - Updated dependencies
15
+ - @ctx-core/package@9.1.9
16
+
17
+ ## 11.0.27
18
+
19
+ ### Patch Changes
20
+
21
+ - update dependencies
22
+
23
+ ## 11.0.26
24
+
25
+ ### Patch Changes
26
+
27
+ - @swc/core: ^1.2.117 -> ^1.2.118
28
+ - Updated dependencies
29
+ - @ctx-core/object@21.0.29
30
+ - @ctx-core/package@9.1.7
31
+
3
32
  ## 11.0.25
4
33
 
5
34
  ### Patch Changes
package/COMMIT_EDITMSG CHANGED
@@ -1 +1,2 @@
1
1
 
2
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/core-js",
3
- "version": "11.0.25",
3
+ "version": "11.0.29",
4
4
  "description": "ctx-core core-js",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,23 +17,21 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
20
  "module": "./dist/index.js",
22
21
  "types": "./src/index.ts",
23
22
  "exports": {
24
23
  ".": {
25
- "require": "./dist/index.cjs",
26
24
  "import": "./dist/index.js"
27
25
  },
28
26
  "./package.json": "./package.json"
29
27
  },
30
28
  "dependencies": {
31
- "@ctx-core/object": "^21.0.28",
32
- "@ctx-core/package": "^9.1.6"
29
+ "@ctx-core/object": "^21.0.30",
30
+ "@ctx-core/package": "^9.1.10"
33
31
  },
34
32
  "devDependencies": {
35
33
  "@swc/cli": "^0.1.52",
36
- "@swc/core": "^1.2.117",
34
+ "@swc/core": "^1.2.118",
37
35
  "typescript": "next"
38
36
  },
39
37
  "publishConfig": {
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "target": "ES2019",
4
+ "target": "ES2020",
5
5
  "composite": true,
6
6
  "declaration": true,
7
7
  "sourceMap": true,