@ctx-core/session 9.0.26 → 9.0.30

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,37 @@
1
1
  # @ctx-core/session
2
2
 
3
+ ## 9.0.30
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: - "main": explicitly not support cjs
8
+ - Updated dependencies
9
+ - @ctx-core/env@13.0.54
10
+
11
+ ## 9.0.29
12
+
13
+ ### Patch Changes
14
+
15
+ - @swc/core: ^1.2.117 -> ^1.2.118
16
+ - Updated dependencies
17
+ - @ctx-core/env@13.0.52
18
+
19
+ ## 9.0.28
20
+
21
+ ### Patch Changes
22
+
23
+ - @swc/core: ^1.2.116 -> ^1.2.117
24
+ - Updated dependencies
25
+ - @ctx-core/env@13.0.51
26
+
27
+ ## 9.0.27
28
+
29
+ ### Patch Changes
30
+
31
+ - @swc/core: ^1.2.113 -> ^1.2.116
32
+ - Updated dependencies
33
+ - @ctx-core/env@13.0.50
34
+
3
35
  ## 9.0.26
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/session",
3
- "version": "9.0.26",
3
+ "version": "9.0.30",
4
4
  "description": "ctx-core session",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,7 +17,6 @@
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": {
@@ -28,11 +27,11 @@
28
27
  "./package.json": "./package.json"
29
28
  },
30
29
  "dependencies": {
31
- "@ctx-core/env": "^13.0.49"
30
+ "@ctx-core/env": "^13.0.54"
32
31
  },
33
32
  "devDependencies": {
34
33
  "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.113",
34
+ "@swc/core": "^1.2.118",
36
35
  "typescript": "next"
37
36
  },
38
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,