@ctx-core/session 9.0.59 → 9.0.62
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 +22 -0
- package/lib/env.js.map +1 -1
- package/package.json +48 -49
- package/ctx-core-session-9.0.59.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @ctx-core/session
|
|
2
2
|
|
|
3
|
+
## 9.0.62
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @ctx-core/env: ^16.0.20 -> ^16.0.21
|
|
8
|
+
|
|
9
|
+
## 9.0.61
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @ctx-core/function: 20.7.1
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @ctx-core/env@16.0.20
|
|
16
|
+
|
|
17
|
+
## 9.0.60
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- @ctx-core/array: 26.2.0
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @ctx-core/env@16.0.19
|
|
24
|
+
|
|
3
25
|
## 9.0.59
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/lib/env.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/env.ts"],"sourcesContent":["import { throw_missing_env } from '@ctx-core/env'\nconst SESSION_KEY = process.env.SESSION_KEY || throw_missing_env('SESSION_KEY')\nexport { SESSION_KEY }\n"],"names":["throw_missing_env","SESSION_KEY","process","env"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/env.ts"],"sourcesContent":["import { throw_missing_env } from '@ctx-core/env'\nconst SESSION_KEY = process.env.SESSION_KEY || throw_missing_env('SESSION_KEY')\nexport { SESSION_KEY }\n"],"names":["throw_missing_env","SESSION_KEY","process","env"],"mappings":"SAASA,iBAAiB,QAAQ,eAAe,CAAA;AACjD,MAAMC,WAAW,GAAGC,OAAO,CAACC,GAAG,CAACF,WAAW,IAAID,iBAAiB,CAAC,aAAa,CAAC;AAC/E,SAASC,WAAW,GAAE"}
|
package/package.json
CHANGED
|
@@ -1,50 +1,49 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
2
|
+
"name": "@ctx-core/session",
|
|
3
|
+
"version": "9.0.62",
|
|
4
|
+
"description": "ctx-core session",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ctx-core",
|
|
7
|
+
"session"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/ctx-core/session#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/ctx-core/session/issues"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/ctx-core/session.git"
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"author": "Brian Takita",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"types": "./lib/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": "./lib/index.js",
|
|
23
|
+
"./package.json": "./package.json"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@ctx-core/env": "^16.0.21"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@swc/cli": "^0.1.57",
|
|
30
|
+
"@swc/core": "^1.2.173",
|
|
31
|
+
"rimraf": "^3.0.2",
|
|
32
|
+
"typescript": "next"
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public",
|
|
36
|
+
"cache": "~/.npm"
|
|
37
|
+
},
|
|
38
|
+
"svelte": "./lib/index.js",
|
|
39
|
+
"sideEffects": false,
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "npm run compile",
|
|
42
|
+
"clean": "rimraf lib && npm run clean:tsbuildinfo",
|
|
43
|
+
"clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
|
|
44
|
+
"compile": "npm run compile:source && npm run compile:declaration",
|
|
45
|
+
"compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
|
|
46
|
+
"compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
|
|
47
|
+
"exec": "$@"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
Binary file
|