File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 3
3
- " 10"
4
4
script :
5
5
- npm run lint
6
- - npm run test
6
+ - npm run build
7
+ - npm run test
Original file line number Diff line number Diff line change 3
3
"version" : " 1.1.2" ,
4
4
"scripts" : {
5
5
"serve" : " INTERNAL_DEPS=1 vue-cli-service serve ./playground/main.js" ,
6
- "build" : " vue-cli-service lint --fix; npm run build:styleguide; npm run build:lib" ,
6
+ "build" : " vue-cli-service lint --fix && npm run build:lib" ,
7
7
"test" : " vue-cli-service test:unit" ,
8
8
"tdd" : " yarn run test --watch --coverage=false" ,
9
9
"bundlewatch" : " bundlewatch --config ./bundlewatch.config.js" ,
10
10
"lint" : " vue-cli-service lint" ,
11
11
"build:lib" : " vue-cli-service build --target lib --name Cloudinary src/index.js && npm run bundlewatch" ,
12
- "build:styleguide" : " rm -rf docs/*; node docs-sources/generateDocsLinks.js; vue-cli-service lint --fix; INTERNAL_DEPS=1 vue-styleguidist build" ,
13
- "styleguide" : " node docs-sources/generateDocsLinks.js; vue-cli-service lint --fix; INTERNAL_DEPS=1 vue-styleguidist server" ,
14
12
"storybook" : " start-storybook -p 6006" ,
15
13
"build-storybook" : " build-storybook -o docs-build -s ./src/stories/assets"
16
14
},
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Vue from 'vue';
2
2
import { mount } from "@vue/test-utils" ;
3
3
import CldImage from "../../../src/components/CldImage/CldImage.vue" ;
4
4
5
- describe ( "CldImage::responsive=fill" , async ( ) => {
5
+ describe ( "CldImage::responsive=fill" , ( ) => {
6
6
it ( "renders" , async ( ) => {
7
7
const wrapper = mount ( {
8
8
template : `
You can’t perform that action at this time.
0 commit comments