File tree Expand file tree Collapse file tree 7 files changed +101
-37
lines changed Expand file tree Collapse file tree 7 files changed +101
-37
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -37,22 +37,19 @@ jobs:
37
37
cd example && yarn
38
38
env :
39
39
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
40
-
40
+ - name : Build project
41
+ run : yarn build
41
42
- name : Serve example app
42
43
continue-on-error : false
43
44
run : yarn run serve-app
44
45
env :
45
46
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
46
-
47
47
- name : Build project and run tests
48
48
continue-on-error : false
49
49
run : yarn run run-tests
50
50
env :
51
51
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
52
52
53
- - name : Build project
54
- run : yarn build
55
-
56
53
release-npm :
57
54
needs : build
58
55
name : Release npm
64
61
node-version : ${{ matrix.node-version }}
65
62
registry-url : https://registry.npmjs.org/
66
63
- run : yarn install --frozen-lockfile
64
+ - name : Build project
65
+ continue-on-error : false
66
+ run : yarn build
67
+ env :
68
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
67
69
- run : npm publish --access public
68
70
env :
69
71
NODE_AUTH_TOKEN : ${{ secrets.NPMJS_TOKEN }}
87
89
registry-url : https://npm.pkg.github.com/
88
90
scope : " @lottiefiles"
89
91
- run : yarn install --frozen-lockfile
92
+ - name : Build project
93
+ continue-on-error : false
94
+ run : yarn build
95
+ env :
96
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
90
97
- run :
91
98
echo "//npm.pkg.github.com:_authToken=${{ secrets.GITHUB_TOKEN }}" >
92
99
~/.npmrc
Original file line number Diff line number Diff line change 1
- .DS_Store
2
- node_modules
3
- /dist
4
-
5
-
6
- # local env files
7
- .env.local
8
- .env. * .local
9
-
10
- # Log files
1
+ # Logs
2
+ logs
3
+ * .log
11
4
npm-debug.log *
12
5
yarn-debug.log *
13
6
yarn-error.log *
14
- pnpm-debug.log *
15
-
16
- # Editor directories and files
17
- .idea
18
- .vscode
19
- * .suo
20
- * .ntvs *
21
- * .njsproj
22
- * .sln
23
- * .sw ?
7
+
8
+ # Runtime data
9
+ pids
10
+ * .pid
11
+ * .seed
12
+ * .pid.lock
13
+
14
+ # node-waf configuration
15
+ .lock-wscript
16
+
17
+ # Dependency directories
18
+ ** /node_modules /
19
+
20
+ # Force Karam to not add package-lock.json
21
+ package-lock.json
22
+
23
+ # Optional npm cache directory
24
+ .npm
25
+
26
+ # Optional eslint cache
27
+ .eslintcache
28
+
29
+ # Yarn Integrity file
30
+ .yarn-integrity
31
+
32
+ # dotenv environment variables file
33
+ .env
34
+ * .env
35
+
36
+ # IDEs
37
+ ** /.idea
38
+ ** /.vscode
39
+ ** /.history
40
+
41
+ # Operating system
42
+ .DS_Store
43
+ .tmp
44
+
45
+ # Dist artifacts
46
+ dist /
47
+
48
+ # Tests
49
+ coverage /
50
+ cypress /react-testing-pages /src /components /lottie-react.js
51
+ .nyc_output
Original file line number Diff line number Diff line change
1
+ # IDE
2
+ .vscode
3
+ .idea
4
+ .history
5
+ * .log
6
+
7
+ .storybook
8
+ stories
9
+
10
+ # CI/CD
11
+ .travis.yml
12
+
13
+ # Configs
14
+ jest.config.js
15
+ rollup.config.js
16
+ tsconfig.json
17
+
18
+ # Docs
19
+ docs /
20
+ examples /
21
+ cypress /
22
+ cypress /react-testing-pages /src /components /lottie-react.js
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 09be46f: add build to build at root of dist folder
8
+
9
+ ## 1.0.8
10
+
11
+ ### Patch Changes
12
+
13
+ - 49df023: added changesets and dual deploy
14
+
3
15
## 1.0.6
4
16
5
17
### Patch Changes
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import Properties from "../components/Properties.vue";
6
6
import Methods from "../components/Methods.vue" ;
7
7
import Controls from "../components/Controls.vue" ;
8
8
import VueRouter from "vue-router" ;
9
- import LottieVuePlayer from "../../dist/@lottiefiles/ vue-lottie-player.common" ;
9
+ import LottieVuePlayer from "../../dist/vue-lottie-player.common" ;
10
10
11
11
Vue . use ( LottieVuePlayer ) ;
12
12
@@ -16,7 +16,7 @@ const router = new VueRouter({
16
16
{
17
17
path : '/' ,
18
18
name : 'home' ,
19
- component : Home
19
+ component : Home
20
20
} ,
21
21
{
22
22
path : '/load' ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lottiefiles/vue-lottie-player" ,
3
- "version" : " 1.0.6 " ,
3
+ "version" : " 1.0.8 " ,
4
4
"description" : " Lottie player wrapper for Vue.js by LottieFiles" ,
5
5
"scripts" : {
6
- "build" : " vue-cli-service build --target lib --name @lottiefiles/ vue-lottie-player ./src/index.js && rm ./dist/demo.html" ,
7
- "build:dev" : " vue-cli-service build --watch --inline-vue --target lib --name @lottiefiles/ vue-lottie-player ./src/index.js && rm ./dist/demo.html" ,
8
- "build-with-coverage" : " CODE_COVERAGE=true vue-cli-service build --target lib --name @lottiefiles/ vue-lottie-player ./src/index.js && rm ./dist/demo.html" ,
6
+ "build" : " vue-cli-service build --target lib --name vue-lottie-player ./src/index.js && rm ./dist/demo.html" ,
7
+ "build:dev" : " vue-cli-service build --watch --inline-vue --target lib --name vue-lottie-player ./src/index.js && rm ./dist/demo.html" ,
8
+ "build-with-coverage" : " CODE_COVERAGE=true vue-cli-service build --target lib --name vue-lottie-player ./src/index.js && rm ./dist/demo.html" ,
9
9
"release" : " semantic-release" ,
10
10
"run-tests" : " yarn run build-with-coverage && yarn run start-cypress" ,
11
11
"postrun-tests" : " kill $(lsof -t -i:8080)" ,
18
18
"type" : " git" ,
19
19
"url" : " git+https://github.com/LottieFiles/lottie-vue.git"
20
20
},
21
- "main" : " dist/@lottiefiles/ vue-lottie-player.common.js" ,
21
+ "main" : " dist/vue-lottie-player.common.js" ,
22
22
"files" : [
23
23
" dist"
24
24
],
You can’t perform that action at this time.
0 commit comments