@ctx-core/session 9.0.29 → 9.0.33

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.33
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: package.json: exports
8
+ - Updated dependencies
9
+ - @ctx-core/env@14.0.3
10
+
11
+ ## 9.0.32
12
+
13
+ ### Patch Changes
14
+
15
+ - package.json: svelte: ./dist/index.js
16
+ - Updated dependencies
17
+ - @ctx-core/env@14.0.2
18
+
19
+ ## 9.0.31
20
+
21
+ ### Patch Changes
22
+
23
+ - package.json: - module
24
+ - Updated dependencies
25
+ - Updated dependencies
26
+ - @ctx-core/env@14.0.0
27
+
28
+ ## 9.0.30
29
+
30
+ ### Patch Changes
31
+
32
+ - package.json: - "main": explicitly not support cjs
33
+ - Updated dependencies
34
+ - @ctx-core/env@13.0.54
35
+
3
36
  ## 9.0.29
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/session",
3
- "version": "9.0.29",
3
+ "version": "9.0.33",
4
4
  "description": "ctx-core session",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -12,36 +12,35 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/ctx-core/session/issues"
15
+ "url": "https://github.com/ctx-core/session.git"
16
16
  },
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
- "types": "./src/index.ts",
23
20
  "exports": {
24
21
  ".": {
25
- "require": "./dist/index.cjs",
26
- "import": "./dist/index.js"
22
+ "import": "./dist/index.js",
23
+ "types": "./src/index.ts"
27
24
  },
28
25
  "./package.json": "./package.json"
29
26
  },
30
27
  "dependencies": {
31
- "@ctx-core/env": "^13.0.52"
28
+ "@ctx-core/env": "^14.0.3"
32
29
  },
33
30
  "devDependencies": {
34
- "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.118",
31
+ "@swc/cli": "^0.1.55",
32
+ "@swc/core": "^1.2.120",
33
+ "rimraf": "^3.0.2",
36
34
  "typescript": "next"
37
35
  },
38
36
  "publishConfig": {
39
37
  "access": "public",
40
38
  "cache": "~/.npm"
41
39
  },
40
+ "svelte": "./dist/index.js",
42
41
  "scripts": {
43
42
  "build": "npm run compile",
44
- "clean": "rm -rf dist",
43
+ "clean": "rimraf dist",
45
44
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
46
45
  "exec": "$@"
47
46
  }
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,