startupjs 0.60.0-canary.6 → 0.60.0-canary.7
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/auth.js +1 -0
- package/index.d.ts +0 -3
- package/index.js +0 -3
- package/package.json +11 -10
package/auth.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@startupjs/auth/client'
|
package/index.d.ts
CHANGED
|
@@ -6,9 +6,6 @@ export * from '@startupjs/hooks'
|
|
|
6
6
|
// HINT: `isomorphic` means that the code can be executed both
|
|
7
7
|
// on the server and on the client
|
|
8
8
|
export * from '@startupjs/isomorphic-helpers'
|
|
9
|
-
export { getSessionData, setSessionData, deleteSessionData } from '@startupjs/server/utils/clientSessionData'
|
|
10
|
-
export { default as login } from '@startupjs/server/utils/clientLogin'
|
|
11
|
-
export { default as logout } from '@startupjs/server/utils/clientLogout'
|
|
12
9
|
|
|
13
10
|
export function serverOnly (value: any): any
|
|
14
11
|
|
package/index.js
CHANGED
|
@@ -6,9 +6,6 @@ export * from '@startupjs/hooks'
|
|
|
6
6
|
// HINT: `isomorphic` means that the code can be executed both
|
|
7
7
|
// on the server and on the client
|
|
8
8
|
export * from '@startupjs/isomorphic-helpers'
|
|
9
|
-
export { getSessionData, setSessionData, deleteSessionData, onInitSession } from '@startupjs/server/utils/clientSessionData'
|
|
10
|
-
export { default as login } from '@startupjs/server/utils/clientLogin'
|
|
11
|
-
export { default as logout } from '@startupjs/server/utils/clientLogout'
|
|
12
9
|
|
|
13
10
|
// wrap serverOnly around the value to remove it from the client bundle
|
|
14
11
|
// (it will be replaced with `undefined` on the client by the babel-plugin-eliminator)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "startupjs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.60.0-canary.
|
|
4
|
+
"version": "0.60.0-canary.7",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">= 14"
|
|
7
7
|
},
|
|
@@ -27,14 +27,15 @@
|
|
|
27
27
|
"bin": "./cli.js",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@startupjs/
|
|
31
|
-
"@startupjs/
|
|
32
|
-
"@startupjs/
|
|
33
|
-
"@startupjs/
|
|
34
|
-
"@startupjs/
|
|
35
|
-
"@startupjs/
|
|
36
|
-
"@startupjs/
|
|
37
|
-
"
|
|
30
|
+
"@startupjs/auth": "^0.60.0-canary.7",
|
|
31
|
+
"@startupjs/bundler": "^0.60.0-canary.7",
|
|
32
|
+
"@startupjs/cli": "^0.60.0-canary.7",
|
|
33
|
+
"@startupjs/hooks": "^0.60.0-canary.7",
|
|
34
|
+
"@startupjs/isomorphic-helpers": "^0.60.0-canary.7",
|
|
35
|
+
"@startupjs/registry": "^0.60.0-canary.7",
|
|
36
|
+
"@startupjs/server": "^0.60.0-canary.7",
|
|
37
|
+
"@startupjs/utils": "^0.60.0-canary.7",
|
|
38
|
+
"babel-preset-startupjs": "^0.60.0-canary.7",
|
|
38
39
|
"cssxjs": "^0.2.17",
|
|
39
40
|
"lodash": "^4.17.20",
|
|
40
41
|
"teamplay": "^0.3.26"
|
|
@@ -52,5 +53,5 @@
|
|
|
52
53
|
"optional": true
|
|
53
54
|
}
|
|
54
55
|
},
|
|
55
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "68c5c8e9757e263133c36a24f46ba35efc9b87b8"
|
|
56
57
|
}
|