Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 4c492ba

Browse files
committed
Merge branch 'next' into feature/checkbox--radio
2 parents d892e0b + dc2db8b commit 4c492ba

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.npmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ jest.config.js
77
babel.config.js
88
vue.config.js
99
postcss.config.js
10+
api-extractor.json
11+
renovate.json
12+
rollup.config.js
1013
tailwind.config.js
1114
.prettierrc
1215
.git
16+
.prettierignore
1317
**/.git/
1418
**/node_modules/
1519
yarn.lock

api-extractor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"dtsRollup": {
1616
"enabled": true,
17-
"untrimmedFilePath": "./dist/as-dynamics-form.d.ts"
17+
"untrimmedFilePath": "./dist/as-dynamic-forms.d.ts"
1818
},
1919

2020
"tsdocMetadata": {

rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import resolve from '@rollup/plugin-node-resolve';
66
import commonjs from '@rollup/plugin-commonjs';
77
import { terser } from 'rollup-plugin-terser';
88
import ts from 'rollup-plugin-typescript2';
9-
import VuePlugin from 'rollup-plugin-vue';
9+
import vue from 'rollup-plugin-vue';
1010

1111
import pkg from './package.json';
1212
const name = 'as-dynamic-forms';
@@ -89,8 +89,8 @@ function createConfig(format, output, plugins = []) {
8989
// used alone.
9090
external,
9191
plugins: [
92-
VuePlugin(/* VuePluginOptions */),
9392
tsPlugin,
93+
vue(),
9494
createReplacePlugin(
9595
isProductionBuild,
9696
isBundlerESMBuild,

src/components/dynamic-form/DynamicForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
>
99
<dynamic-input
1010
v-for="control in controls"
11-
:key="control?.name"
11+
:key="control.name"
1212
:control="control"
1313
@changed="valueChange"
1414
/>

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "esnext",
3+
"target": "es2019",
44
"module": "esnext",
55
"strict": true,
66
"jsx": "preserve",

vue.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
pages: {
1414
index: {
1515
title: 'Vue Dynamic Forms',
16-
entry: 'dev/vue2/main.js',
16+
entry: 'dev/typescript/main.ts',
1717
template: 'public/index.html',
1818
filename: 'index.html',
1919
},

0 commit comments

Comments
 (0)