@ctx-core/session 9.0.38 → 9.0.42
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 +31 -0
- package/{dist → lib}/env.d.ts +0 -0
- package/{dist → lib}/env.js +0 -0
- package/{dist → lib}/env.js.map +0 -0
- package/{dist → lib}/index.d.ts +0 -0
- package/{dist → lib}/index.js +0 -0
- package/{dist → lib}/index.js.map +0 -0
- package/package.json +11 -11
- package/tsconfig.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @ctx-core/session
|
|
2
2
|
|
|
3
|
+
## 9.0.42
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- version bump
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @ctx-core/env@15.0.8
|
|
10
|
+
|
|
11
|
+
## 9.0.41
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- .js + .d.ts instead of .ts
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @ctx-core/env@15.0.7
|
|
18
|
+
|
|
19
|
+
## 9.0.40
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @ctx-core/env@15.0.0
|
|
25
|
+
|
|
26
|
+
## 9.0.39
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- fix: error TS6059: \* is not under 'rootDir': package.json: types: ./dist/index.d.ts
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
- @ctx-core/env@14.0.9
|
|
33
|
+
|
|
3
34
|
## 9.0.38
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/{dist → lib}/env.d.ts
RENAMED
|
File without changes
|
package/{dist → lib}/env.js
RENAMED
|
File without changes
|
package/{dist → lib}/env.js.map
RENAMED
|
File without changes
|
package/{dist → lib}/index.d.ts
RENAMED
|
File without changes
|
package/{dist → lib}/index.js
RENAMED
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ctx-core/session",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.42",
|
|
4
4
|
"description": "ctx-core session",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ctx-core",
|
|
@@ -17,19 +17,19 @@
|
|
|
17
17
|
"license": "Apache-2.0",
|
|
18
18
|
"author": "Brian Takita",
|
|
19
19
|
"type": "module",
|
|
20
|
-
"types": "./
|
|
20
|
+
"types": "./lib/index.d.ts",
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|
|
23
|
-
"import": "./
|
|
23
|
+
"import": "./lib/index.js"
|
|
24
24
|
},
|
|
25
25
|
"./package.json": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@ctx-core/env": "^
|
|
28
|
+
"@ctx-core/env": "^15.0.8"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@swc/cli": "^0.1.55",
|
|
32
|
-
"@swc/core": "^1.2.
|
|
32
|
+
"@swc/core": "^1.2.125",
|
|
33
33
|
"rimraf": "^3.0.2",
|
|
34
34
|
"typescript": "next"
|
|
35
35
|
},
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"access": "public",
|
|
38
38
|
"cache": "~/.npm"
|
|
39
39
|
},
|
|
40
|
-
"svelte": "./
|
|
40
|
+
"svelte": "./lib/index.js",
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "npm run compile",
|
|
43
|
-
"clean": "rimraf
|
|
44
|
-
"
|
|
45
|
-
"compile": "npm run
|
|
46
|
-
"
|
|
47
|
-
"
|
|
43
|
+
"clean": "rimraf lib && npm run clean:tsbuildinfo",
|
|
44
|
+
"clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
|
|
45
|
+
"compile": "npm run compile:source && npm run compile:declaration",
|
|
46
|
+
"compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
|
|
47
|
+
"compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
|
|
48
48
|
"exec": "$@"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/tsconfig.json
CHANGED
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"node_modules/@types"
|
|
23
23
|
],
|
|
24
24
|
"rootDir": "src",
|
|
25
|
-
"outDir": "
|
|
26
|
-
"declarationDir": "
|
|
25
|
+
"outDir": "lib",
|
|
26
|
+
"declarationDir": "lib",
|
|
27
27
|
"lib": ["dom", "ESNext"],
|
|
28
28
|
"importsNotUsedAsValues": "error",
|
|
29
29
|
"strict": true
|
|
30
30
|
},
|
|
31
31
|
"exclude": [
|
|
32
32
|
"node_modules",
|
|
33
|
-
"
|
|
33
|
+
"lib"
|
|
34
34
|
],
|
|
35
35
|
"references": []
|
|
36
36
|
}
|