Skip to content

Commit e97c64c

Browse files
authored
Merge pull request #314 from nextcloud/vue3
Update to Vue 3 and switch to Vite
2 parents d23a3f0 + ea8bebb commit e97c64c

29 files changed

+6457
-7858
lines changed

.eslintrc.js renamed to .eslintrc.cjs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,20 @@
55

66
module.exports = {
77
globals: {
8-
appVersion: true
8+
appVersion: true,
99
},
1010
parserOptions: {
11-
requireConfigFile: false
11+
requireConfigFile: false,
1212
},
1313
extends: [
14-
'@nextcloud'
14+
'@nextcloud',
1515
],
1616
rules: {
1717
'jsdoc/require-jsdoc': 'off',
1818
'jsdoc/tag-lines': 'off',
1919
'vue/first-attribute-linebreak': 'off',
20-
'import/extensions': 'off'
21-
}
20+
'import/extensions': 'off',
21+
'import/no-unresolved': ['error', { ignore: ['\\?raw'] }],
22+
'vue/no-v-model-argument': 'off',
23+
},
2224
}

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Approve/reject files based on workflows defined by admins.
1313
**Warning**: The DocuSign integration is no longer part of this app
1414
and can be installed with [this app](https://apps.nextcloud.com/apps/integration_docusign).
1515
]]></description>
16-
<version>2.2.0</version>
16+
<version>2.3.0</version>
1717
<licence>agpl</licence>
1818
<author>Julien Veyssier</author>
1919
<namespace>Approval</namespace>

0 commit comments

Comments
 (0)