@wishbone-media/spark 0.8.5 → 0.9.0
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/README.md +0 -11
- package/dist/index.js +2781 -561
- package/package.json +2 -1
- package/src/components/SparkModalContainer.vue +2 -2
- package/src/plugins/fontawesome.js +2 -0
- package/src/plugins/index.js +2 -1
- package/src/plugins/router.js +122 -0
- package/src/stores/auth.js +154 -0
- package/src/stores/index.js +1 -0
- package/src/stores/navigation.js +30 -13
- package/src/utils/cookies.js +51 -0
- package/src/views/SparkForgotPasswordView.vue +67 -37
- package/src/views/SparkLoginView.vue +29 -13
- package/src/views/SparkLogoutView.vue +19 -4
- package/src/views/SparkResetPasswordView.vue +113 -0
- package/src/views/index.js +3 -0
package/README.md
CHANGED
|
@@ -17,14 +17,3 @@ alias spark.public='pnpm remove @wishbone-media/spark && pnpm i @wishbone-media/
|
|
|
17
17
|
# spark.rebuild
|
|
18
18
|
rm -rf node_modules && pnpm i && pnpm build
|
|
19
19
|
```
|
|
20
|
-
|
|
21
|
-
## Release new build
|
|
22
|
-
|
|
23
|
-
```
|
|
24
|
-
# First commit and push
|
|
25
|
-
|
|
26
|
-
# Then relelease:
|
|
27
|
-
pn release:patch
|
|
28
|
-
pn release:minor
|
|
29
|
-
pn release:major
|
|
30
|
-
```
|