next-workflow-builder 0.1.0 → 0.1.1
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/dist/client/package.json +1 -1
- package/package.json +5 -2
package/dist/client/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"sideEffects":
|
|
1
|
+
{"sideEffects":["./components/workflow/utils/code-generators.js"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-workflow-builder",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "A reusable Next.js plugin for visual workflow building with drag-and-drop, code generation, and AI-powered automation.",
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
"./dist/**/*.workflow.js",
|
|
11
11
|
"./dist/**/*.step.js",
|
|
12
12
|
"./dist/lib/steps/**/*.js",
|
|
13
|
+
"./dist/plugins/**/steps/*.js",
|
|
14
|
+
"./dist/lib/codegen-templates/*.js",
|
|
15
|
+
"./dist/client/components/workflow/utils/code-generators.js",
|
|
13
16
|
"./dist/styles/globals.css"
|
|
14
17
|
],
|
|
15
18
|
"exports": {
|
|
@@ -57,7 +60,7 @@
|
|
|
57
60
|
],
|
|
58
61
|
"scripts": {
|
|
59
62
|
"prebuild": "rimraf dist",
|
|
60
|
-
"build": "tsc --noCheck && node scripts/fix-esm-imports.mjs && mkdir -p dist/styles dist/client && cp src/styles/globals.css dist/styles/globals.css && echo '{\"sideEffects\":
|
|
63
|
+
"build": "tsc --noCheck && node scripts/fix-esm-imports.mjs && mkdir -p dist/styles dist/client && cp src/styles/globals.css dist/styles/globals.css && echo '{\"sideEffects\":[\"./components/workflow/utils/code-generators.js\"]}' > dist/client/package.json",
|
|
61
64
|
"test": "vitest --typecheck",
|
|
62
65
|
"types:check": "tsc --noEmit",
|
|
63
66
|
"prepublishOnly": "pnpm build"
|