Skip to content

Commit 9f911d2

Browse files
authored
Merge pull request #98 from coreui/dev-vue-cli-v3
chore: move tooling to vue-cli v3.0.0-rc.2
2 parents 58fd280 + 9e31783 commit 9f911d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+193
-1089
lines changed

.babelrc

-18
This file was deleted.

.editorconfig

-9
This file was deleted.

.eslintignore

-6
This file was deleted.

.eslintrc.js

+8-20
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,17 @@
1-
// http://eslint.org/docs/user-guide/configuring
2-
31
module.exports = {
42
root: true,
5-
parserOptions: {
6-
parser: 'babel-eslint'
7-
},
83
env: {
9-
browser: true,
4+
node: true
105
},
11-
extends: [
12-
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
13-
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
6+
'extends': [
147
'plugin:vue/essential',
15-
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
16-
'standard'
17-
],
18-
// required to lint *.vue files
19-
plugins: [
20-
'vue'
8+
'eslint:recommended'
219
],
22-
// add your custom rules here
2310
rules: {
24-
// allow async-await
25-
'generator-star-spacing': 'off',
26-
// allow debugger during development
11+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
2712
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
13+
},
14+
parserOptions: {
15+
parser: 'babel-eslint'
2816
}
29-
}
17+
}

.gitignore

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
.DS_Store
2-
node_modules/
3-
/dist/
2+
node_modules
3+
package-lock.json
4+
/dist
5+
6+
/tests/e2e/reports/
7+
selenium-debug.log
8+
9+
# local env files
10+
.env.local
11+
.env.*.local
12+
13+
# Log files
414
npm-debug.log*
515
yarn-debug.log*
616
yarn-error.log*
7-
/test/unit/coverage/
8-
/test/e2e/reports/
9-
selenium-debug.log
10-
package-lock.json
1117

1218
# Editor directories and files
1319
.idea
@@ -16,3 +22,4 @@ package-lock.json
1622
*.ntvs*
1723
*.njsproj
1824
*.sln
25+
*.sw*

.postcssrc.js

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
// https://github.com/michael-ciniawsky/postcss-load-config
2-
31
module.exports = {
4-
"plugins": {
5-
"postcss-import": {},
6-
"postcss-url": {},
7-
// to edit target browsers: use "browserslist" field in package.json
8-
"autoprefixer": {}
2+
plugins: {
3+
autoprefixer: {}
94
}
10-
}
5+
}

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## [vue](./README.md) version `changelog`
22

3+
##### `v2.0.0-beta.5`
4+
- chore: move tooling to `vue-cli v3.0.0-rc.2`
5+
- refactor: move from `static/img` to `public/img` dir
6+
- refactor: move `index.thml` to `public` dir
7+
- refactor: move to Jest testing
8+
- tests: fix e2e, unit
9+
10+
##### `v2.0.0-beta.4`
11+
- chore: dependencies update
12+
313
##### `v2.0.0-beta.3`
414
- refactor: `getStyles()` back to `@coreui/coreui` version `^2.0.2`
515
- fix(Dashboard): `width` card-line*-chart-example `ie` issue

LICENSE

-21
This file was deleted.

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/app'
4+
]
5+
}

build/build.js

-41
This file was deleted.

build/check-versions.js

-54
This file was deleted.

build/logo.png

-6.69 KB
Binary file not shown.

build/utils.js

-101
This file was deleted.

build/vue-loader.conf.js

-22
This file was deleted.

0 commit comments

Comments
 (0)