Ver código fonte

Fixed build errors

Both test:type and lint were failing, so I fixed the issues
Andrew Kachnic 4 anos atrás
pai
commit
ef0722cbc6
3 arquivos alterados com 10 adições e 3 exclusões
  1. 1 1
      examples/vue/src/main.js
  2. 6 0
      package-lock.json
  3. 3 2
      package.json

+ 1 - 1
examples/vue/src/main.js

@@ -4,5 +4,5 @@ import App from './App.vue'
 Vue.config.productionTip = false
 
 new Vue({
-  render: h => h(App),
+  render: h => h(App)
 }).$mount('#app')

+ 6 - 0
package-lock.json

@@ -41424,6 +41424,12 @@
       "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
       "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="
     },
+    "vue": {
+      "version": "2.6.12",
+      "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz",
+      "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==",
+      "dev": true
+    },
     "vue-template-compiler": {
       "version": "2.6.12",
       "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz",

+ 3 - 2
package.json

@@ -201,11 +201,12 @@
     "tus-node-server": "0.3.2",
     "typescript": "3.7.5",
     "verdaccio": "^4.8.0",
+    "vue": "^2.6.12",
+    "vue-template-compiler": "^2.6.11",
     "watchify": "3.11.1",
     "webdriverio": "5.18.6",
     "webpack": "4.44.1",
-    "whatwg-fetch": "3.0.0",
-    "vue-template-compiler": "^2.6.11"
+    "whatwg-fetch": "3.0.0"
   },
   "scripts": {
     "bootstrap": "lerna bootstrap",