adminforth 1.5.4-next.11 → 1.5.4-next.13
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.
|
@@ -22,13 +22,6 @@ export const useUserStore = defineStore('user', () => {
|
|
|
22
22
|
async function finishLogin() {
|
|
23
23
|
const coreStore = useCoreStore();
|
|
24
24
|
authorize(); // TODO not sure we need this approach with localStorage
|
|
25
|
-
// print traceback to this place
|
|
26
|
-
try {
|
|
27
|
-
null.test();
|
|
28
|
-
} catch (e) {
|
|
29
|
-
console.log(e);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
25
|
reconnect();
|
|
33
26
|
await router.push('/');
|
|
34
27
|
await router.isReady();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adminforth",
|
|
3
|
-
"version": "1.5.4-next.
|
|
3
|
+
"version": "1.5.4-next.13",
|
|
4
4
|
"description": "OpenSource Vue3 powered forth-generation admin panel",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -15,15 +15,15 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
17
17
|
"build": "rm -rf dist && tsc && npm run prepareDist",
|
|
18
|
-
"--comment": "
|
|
18
|
+
"--comment-prepareDist": "-rl allows supply the spa without symlinks which allows to not include source code in the package",
|
|
19
19
|
"prepareDist": "cp -rL spa dist/",
|
|
20
20
|
"put-git-tag": "git tag v$(node -p \"require('./package.json').version\") && git push --tags",
|
|
21
21
|
"rollout": "npm run build && npm version patch && npm publish && npm run rollout-doc && npm run put-git-tag",
|
|
22
22
|
"rollout-next": "npm run build && npm version prerelease --preid=next && npm publish --tag next && npm run put-git-tag",
|
|
23
23
|
"rollout-doc": "cd documentation && npm run build && npm run deploy",
|
|
24
24
|
"docs": "typedoc",
|
|
25
|
-
"--
|
|
26
|
-
"postinstall": "cd ./dist/spa/
|
|
25
|
+
"--comment_postinstall": "postinstall executed after package installed in other project package",
|
|
26
|
+
"postinstall": "cd ./dist/spa/ && npm ci && echo 'installed spa dependencies'",
|
|
27
27
|
"ci-plugins": "for d in plugins/*; do cd $d && npm ci && cd ../..; done"
|
|
28
28
|
},
|
|
29
29
|
"exports": {
|