srcdev-nuxt-forms 0.0.11 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +12 -0
- package/.eslintignore +7 -0
- package/.eslintrc.cjs +12 -0
- package/.nuxtrc +1 -0
- package/.prettierrc +4 -0
- package/.release-it.json +6 -0
- package/package.json +1 -8
- package/tsconfig.json +3 -0
- /package/components/{forms → nuxt-forms}/input-text/InputText.vue +0 -0
- /package/components/{forms → nuxt-forms}/scaffolding/FormField.vue +0 -0
- /package/components/{forms → nuxt-forms}/scaffolding/FormWrapper.vue +0 -0
package/.editorconfig
ADDED
package/.eslintignore
ADDED
package/.eslintrc.cjs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"root": true,
|
|
3
|
+
"extends": [
|
|
4
|
+
"@nuxtjs/eslint-config-typescript",
|
|
5
|
+
"plugin:prettier/recommended"
|
|
6
|
+
],
|
|
7
|
+
"rules": {
|
|
8
|
+
"vue/multi-word-component-names": "off",
|
|
9
|
+
"vue/no-multiple-template-root": "off",
|
|
10
|
+
"@typescript-eslint/no-unused-vars": "off"
|
|
11
|
+
}
|
|
12
|
+
};
|
package/.nuxtrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
typescript.includeWorkspace = true
|
package/.prettierrc
ADDED
package/.release-it.json
ADDED
package/package.json
CHANGED
|
@@ -1,15 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "srcdev-nuxt-forms",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.13",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
|
-
"files": [
|
|
7
|
-
"assets",
|
|
8
|
-
"components",
|
|
9
|
-
"layouts",
|
|
10
|
-
"pages",
|
|
11
|
-
"nuxt.config.ts"
|
|
12
|
-
],
|
|
13
6
|
"scripts": {
|
|
14
7
|
"dev": "nuxi dev",
|
|
15
8
|
"build": "nuxt build",
|
package/tsconfig.json
ADDED
|
File without changes
|
|
File without changes
|
|
File without changes
|