Skip to content

Commit

Permalink
refresh app with newest vue-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Basaingeal committed Jan 4, 2019
1 parent dfc3b79 commit 4a8f628
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 55 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ npm run serve
npm run build
```

### Run your tests
```
npm run test
```

### Lints and fixes files
```
npm run lint
Expand All @@ -24,3 +29,6 @@ npm run lint
```
npm run test:unit
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
83 changes: 42 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-pwa": "^3.0.1",
"@vue/cli-plugin-unit-mocha": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.0",
"@vue/cli-plugin-pwa": "^3.2.0",
"@vue/cli-plugin-unit-mocha": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-eslint": "^10.0.1",
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
"display": "standalone",
"background_color": "#000000",
"theme_color": "#4DBA87"
}
}
1 change: 0 additions & 1 deletion tests/unit/example.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { expect } from 'chai'
import { shallowMount } from '@vue/test-utils'
import HelloWorld from '@/components/HelloWorld.vue'
import { describe, it } from '@vue/cli-plugin-unit-mocha'

describe('HelloWorld.vue', () => {
it('renders props.msg when passed', () => {
Expand Down
15 changes: 8 additions & 7 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module.exports = {
baseUrl: undefined,
outputDir: undefined,
assetsDir: undefined,
runtimeCompiler: undefined,
productionSourceMap: undefined,
parallel: undefined,

css: {
sourceMap: true
},

pwa: {
name: 'Parent.ing'
},

lintOnSave: undefined
}
}

0 comments on commit 4a8f628

Please sign in to comment.