Skip to content

Commit 67e94d1

Browse files
committed
fix: package was not built as module
Package type was not set to 'module', which procuded wrong outputs when building (did not build as module, but as an app).
1 parent 778b27b commit 67e94d1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uwlajs/vue-form-builder",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Vue plugin that generates beautiful forms from declarative rules",
55
"license": "MIT",
66
"author": "uwla",
@@ -13,6 +13,7 @@
1313
},
1414
"main": "./dist/vue-form-builder.cjs",
1515
"module": "./dist/vue-form-builder.js",
16+
"type": "module",
1617
"typings": "dist/vue-form-builder.d.ts",
1718
"exports": {
1819
".": {

0 commit comments

Comments
 (0)