Updated version and dependencies
This commit is contained in:
Родитель
0962d04b5a
Коммит
32ca870550
|
@ -5,7 +5,7 @@
|
|||
<name>Polls</name>
|
||||
<summary>A polls app, similar to doodle/dudle with the possibility to restrict access.</summary>
|
||||
<description>A polls app, similar to doodle/dudle with the possibility to restrict access (members, certain groups/users, hidden and public).</description>
|
||||
<version>0.10.2</version>
|
||||
<version>0.10.3</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Vinzenz Rosenkranz</author>
|
||||
<author>René Gieling</author>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "polls",
|
||||
"description": "Polls app for nextcloud",
|
||||
"version": "0.10.2",
|
||||
"version": "0.10.3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Vinzenz Rosenkranz",
|
||||
|
@ -28,7 +28,7 @@
|
|||
"scripts": {
|
||||
"dev": "webpack --config webpack.dev.js",
|
||||
"watch": "webpack --progress --watch --config webpack.dev.js",
|
||||
"build": "webpack --progress --hide-modules --config webpack.prod.js",
|
||||
"build": "webpack --progress --env.production --hide-modules --config webpack.prod.js",
|
||||
"lint": "eslint --ext .js,.vue src",
|
||||
"lint:fix": "eslint --ext .js,.vue src --fix",
|
||||
"test": "jest",
|
||||
|
@ -71,16 +71,13 @@
|
|||
"eslint-plugin-promise": "^4.0.1",
|
||||
"eslint-plugin-standard": "^4.0.0",
|
||||
"eslint-plugin-vue": "^5.2.2",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"file-loader": "^3.0.1",
|
||||
"mini-css-extract-plugin": "^0.5.0",
|
||||
"node-sass": "^4.11.0",
|
||||
"prettier-eslint": "^8.8.2",
|
||||
"raw-loader": "^1.0.0",
|
||||
"sass-loader": "^7.1.0",
|
||||
"stylelint": "^9.9.0",
|
||||
"stylelint-config-recommended-scss": "^3.2.0",
|
||||
"stylelint-webpack-plugin": "^0.10.5",
|
||||
"vue-loader": "^15.7.0",
|
||||
"vue-style-loader": "^4.1.1",
|
||||
"vue-template-compiler": "^2.6.8",
|
||||
|
|
|
@ -38,8 +38,8 @@ import SideBarClose from './components/sideBarClose'
|
|||
import ShareDiv from './components/shareDiv'
|
||||
import LoadingOverlay from './components/_base-LoadingOverlay'
|
||||
|
||||
Vue.config.debug = true
|
||||
Vue.config.devTools = true
|
||||
Vue.config.debug = process.env.NODE_ENV !== 'production'
|
||||
Vue.config.devTools = process.env.NODE_ENV !== 'production'
|
||||
Vue.component('Controls', Controls)
|
||||
Vue.component('PopoverMenu', PopoverMenu)
|
||||
Vue.component('DatePicker', DatetimePicker)
|
||||
|
|
Загрузка…
Ссылка в новой задаче