Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2019-06-04 21:37:48 +0300
committerGitHub <noreply@github.com>2019-06-04 21:37:48 +0300
commit47ec4b4388e0a5702e3e46c077a73bc0eb955682 (patch)
treefc1dba0eeac0ce6d8138d6d7f3976eb92531278c
parent0962d04b5a20aa88e88b0ebba5f840297028379f (diff)
parent32ca87055016353d257cf86dfab889925a919933 (diff)
Merge pull request #596 from nextcloud/release-0.10.3v0.10.3
Updated version and dependencies
-rw-r--r--appinfo/info.xml2
-rw-r--r--package.json7
-rw-r--r--src/js/main.js4
3 files changed, 5 insertions, 8 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index b424d09e..2c23754a 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -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>
diff --git a/package.json b/package.json
index f07dbc07..a440cdd5 100644
--- a/package.json
+++ b/package.json
@@ -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",
diff --git a/src/js/main.js b/src/js/main.js
index 8a5c9a87..07234a8d 100644
--- a/src/js/main.js
+++ b/src/js/main.js
@@ -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)