@ctx-core/session 9.0.27 → 9.0.31

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,38 @@
1
1
  # @ctx-core/session
2
2
 
3
+ ## 9.0.31
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: - module
8
+ - Updated dependencies
9
+ - Updated dependencies
10
+ - @ctx-core/env@14.0.0
11
+
12
+ ## 9.0.30
13
+
14
+ ### Patch Changes
15
+
16
+ - package.json: - "main": explicitly not support cjs
17
+ - Updated dependencies
18
+ - @ctx-core/env@13.0.54
19
+
20
+ ## 9.0.29
21
+
22
+ ### Patch Changes
23
+
24
+ - @swc/core: ^1.2.117 -> ^1.2.118
25
+ - Updated dependencies
26
+ - @ctx-core/env@13.0.52
27
+
28
+ ## 9.0.28
29
+
30
+ ### Patch Changes
31
+
32
+ - @swc/core: ^1.2.116 -> ^1.2.117
33
+ - Updated dependencies
34
+ - @ctx-core/env@13.0.51
35
+
3
36
  ## 9.0.27
4
37
 
5
38
  ### Patch Changes
package/COMMIT_EDITMSG ADDED
@@ -0,0 +1 @@
1
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/session",
3
- "version": "9.0.27",
3
+ "version": "9.0.31",
4
4
  "description": "ctx-core session",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,22 +17,19 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
- "module": "./dist/index.js",
22
20
  "types": "./src/index.ts",
23
21
  "exports": {
24
22
  ".": {
25
- "require": "./dist/index.cjs",
26
23
  "import": "./dist/index.js"
27
24
  },
28
25
  "./package.json": "./package.json"
29
26
  },
30
27
  "dependencies": {
31
- "@ctx-core/env": "^13.0.50"
28
+ "@ctx-core/env": "^14.0.0"
32
29
  },
33
30
  "devDependencies": {
34
31
  "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.116",
32
+ "@swc/core": "^1.2.118",
36
33
  "typescript": "next"
37
34
  },
38
35
  "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,