sforkowany z mirror/social
Merge pull request #362 from nextcloud/backport/361/master
[master] Use more recent node version for js buildingtest/oracle
commit
fff339736a
|
@ -70,7 +70,7 @@ pipeline:
|
|||
matrix:
|
||||
TESTS: syntax-php7.3
|
||||
eslint:
|
||||
image: nextcloudci/jsunit:jsunit-5
|
||||
image: node:lts-alpine
|
||||
commands:
|
||||
- npm install
|
||||
- npm run lint
|
||||
|
@ -78,7 +78,7 @@ pipeline:
|
|||
matrix:
|
||||
TESTS: eslint
|
||||
vue-build:
|
||||
image: nextcloudci/jsunit:jsunit-5
|
||||
image: node:lts-alpine
|
||||
commands:
|
||||
- npm install
|
||||
- npm run build
|
||||
|
|
Plik diff jest za duży
Load Diff
|
@ -57,6 +57,7 @@
|
|||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/preset-env": "^7.3.0",
|
||||
"@vue/test-utils": "^1.0.0-beta.28",
|
||||
"acorn": "^6.0.5",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-jest": "^23.6.0",
|
||||
"babel-loader": "^8.0.5",
|
||||
|
@ -70,11 +71,9 @@
|
|||
"eslint-plugin-promise": "^4.0.1",
|
||||
"eslint-plugin-standard": "^4.0.0",
|
||||
"eslint-plugin-vue": "^5.1.0",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"file-loader": "^3.0.1",
|
||||
"jest": "^23.6.0",
|
||||
"jest-serializer-vue": "^2.0.2",
|
||||
"mini-css-extract-plugin": "^0.5.0",
|
||||
"node-sass": "^4.11.0",
|
||||
"prettier-eslint": "^8.8.2",
|
||||
"raw-loader": "^1.0.0",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
const path = require('path');
|
||||
const { VueLoaderPlugin } = require('vue-loader');
|
||||
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
||||
|
||||
|
||||
module.exports = {
|
||||
entry: path.join(__dirname, 'src', 'main.js'),
|
||||
|
|
Ładowanie…
Reference in New Issue