@tapni/auth 0.0.45 → 0.0.46
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 +11 -9
- package/dist/TapniAuth.es.js +219 -214
- package/dist/TapniAuth.umd.js +19 -19
- package/dist/style.css +1 -1
- package/package.json +3 -5
- package/src/App.vue +10 -1
- package/src/mixins/apple.mixin.js +2 -3
- package/src/mixins/auth.mixin.js +1 -2
- package/src/mixins/microsoft.mixin.js +2 -2
- package/src/store/locales/cn.js +2 -2
- package/src/store/locales/de.js +2 -2
- package/src/store/locales/en.js +2 -2
- package/src/store/locales/es.js +2 -2
- package/src/store/locales/fr.js +3 -3
- package/src/store/locales/it.js +3 -3
- package/src/store/locales/kr.js +3 -3
- package/src/store/locales/sr.js +3 -3
- package/src/store/locales/tr.js +3 -3
- package/src/views/Reset.vue +2 -2
- package/src/views/Verify.vue +1 -1
- package/src/views/Welcome.vue +11 -3
package/README.md
CHANGED
|
@@ -2,14 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
This template should help get you started developing with Vue 3 in Vite.
|
|
4
4
|
|
|
5
|
-
## Recommended IDE Setup
|
|
6
|
-
|
|
7
|
-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
|
-
|
|
9
|
-
## Customize configuration
|
|
10
|
-
|
|
11
|
-
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
12
|
-
|
|
13
5
|
## Project Setup
|
|
14
6
|
|
|
15
7
|
```sh
|
|
@@ -22,8 +14,18 @@ npm install
|
|
|
22
14
|
npm run dev
|
|
23
15
|
```
|
|
24
16
|
|
|
25
|
-
### Compile and Minify for Production
|
|
17
|
+
### Compile and Minify for Production (auth.tapni.com)
|
|
26
18
|
|
|
27
19
|
```sh
|
|
28
20
|
npm run build
|
|
29
21
|
```
|
|
22
|
+
|
|
23
|
+
### Compile and Minify for NPM (@tapni/auth)
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
npm run build-lib
|
|
27
|
+
```
|
|
28
|
+
and then run
|
|
29
|
+
```sh
|
|
30
|
+
npm publish
|
|
31
|
+
```
|