File tree 3 files changed +21
-6
lines changed
3 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 25
25
node-version : 14
26
26
27
27
- run : npm install
28
-
29
- # publishes to NPM using third party tool (more info here https://github.com/JS-DevTools/npm-publish)
30
- - uses : JS-DevTools/npm-publish@v1
31
- with :
32
- token : ${{ secrets.NPM_TOKEN }}
28
+
29
+ - run : npm publish
30
+ env :
31
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change @@ -5,3 +5,19 @@ This template should help get you started developing with Vue 3 in Vite. The tem
5
5
## Recommended IDE Setup
6
6
7
7
- [ VSCode] ( https://code.visualstudio.com/ ) + [ Volar] ( https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar )
8
+
9
+
10
+ ## How to test locally
11
+
12
+ Run
13
+ ```
14
+ vite build
15
+ npm link
16
+ ```
17
+
18
+ and then in a different project repo you can
19
+ ```
20
+ run npm link "@lob/vue-address-autocomplete"
21
+ ```
22
+
23
+ At which point you can now test the repo locally
Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-select :options =" ['Canada', 'United States ']" ></v-select >
2
+ <v-select :options =" ['This is not in a working state yet ']" ></v-select >
3
3
</template >
4
4
5
5
<script >
You can’t perform that action at this time.
0 commit comments