Skip to content

Commit

Permalink
Upgraded the first files to the new vue-CLI V3 format
Browse files Browse the repository at this point in the history
  • Loading branch information
sronveaux committed Aug 1, 2022
1 parent abbf7cc commit ee51e31
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 78 deletions.
2 changes: 2 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
> 1%
last 2 versions
8 changes: 2 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
root = true

[*]
charset = utf-8
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
insert_final_newline = true
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
.DS_Store
node_modules/
dist/
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
test/unit/coverage/

# Editor directories and files
.idea
Expand All @@ -13,3 +18,4 @@ test/unit/coverage/
*.ntvs*
*.njsproj
*.sln
*.sw?
80 changes: 11 additions & 69 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,83 +31,25 @@
"vuetify": "2.2.18"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime-corejs3": "^7.13.10",
"@mdi/font": "^5.9.55",
"@vue/cli-plugin-babel": "^3.12.0",
"@vue/cli-plugin-eslint": "^3.12.0",
"@vue/cli-plugin-unit-mocha": "^3.12.0",
"@vue/cli-service": "^3.12.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.3",
"autoprefixer": "^9.8.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"copy-dir": "^1.2.0",
"copy-webpack-plugin": "^4.3.1",
"core-js": "^3.9.1",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^2.30.1",
"inject-loader": "^4.0.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"material-icons": "^0.5.4",
"mocha": "^6.2.3",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^3.4.0",
"phantomjs-prebuilt": "^2.1.16",
"portal-vue": "^2.1.7",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.7.1",
"semver": "^6.3.0",
"shelljs": "^0.8.4",
"sinon": "^7.5.0",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.6.2",
"vue-loader": "^14.2.4",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "2.6.11",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
"vue-template-compiler": "2.6.11"
}
}

0 comments on commit ee51e31

Please sign in to comment.