Skip to content

Commit 8599b4f

Browse files
Merge pull request #500 from lionel-bijaoui/vue-cli-3
Project updated to vue-cli 3
2 parents e45d211 + a36869c commit 8599b4f

Some content is hidden

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

89 files changed

+52434
-22790
lines changed

.babelrc

-18
This file was deleted.

.env.development

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VUE_APP_FULL_BUNDLE=true
2+
VUE_APP_DEV_PROJECT=["basic", "checklist", "custom", "full", "grouping", "multiselect", "multi", "picker"]

.env.test

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_FULL_BUNDLE=true

.eslintrc.js

-27
This file was deleted.

.gitignore

+20-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
.DS_Store
22
node_modules/
3-
docs/_book/
4-
npm-debug.log
5-
selenium-debug.log
6-
test/unit/coverage
7-
test/e2e/reports
8-
stats.json
9-
typings/
10-
typings.json
3+
dist/*.html
4+
tests/unit/coverage
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
15+
# Editor directories and files
16+
.idea
17+
.vscode
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw*

babel.config.js

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

build/utils.js

-63
This file was deleted.

build/vue-loader.conf.js

-10
This file was deleted.

build/webpack.build.config.js

-104
This file was deleted.

build/webpack.dev.config.js

-83
This file was deleted.

0 commit comments

Comments
 (0)