@mmapp/react-compiler 0.1.0-alpha.13 → 0.1.0-alpha.15
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/chunk-NUPJYPFU.mjs +801 -0
- package/dist/cli/index.js +62 -38
- package/dist/cli/index.mjs +5 -6
- package/dist/dev-server.js +3 -3
- package/dist/dev-server.mjs +1 -1
- package/dist/engine-binary-FKTZAR56.mjs +480 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -14503,10 +14503,10 @@ async function createDevServer(options = {}) {
|
|
|
14503
14503
|
}
|
|
14504
14504
|
const {
|
|
14505
14505
|
port = 5199,
|
|
14506
|
-
src = "
|
|
14506
|
+
src = ".",
|
|
14507
14507
|
mode = "infer",
|
|
14508
|
-
include = ["**/*.workflow.tsx"],
|
|
14509
|
-
outDir = "dist
|
|
14508
|
+
include = ["models/**/*.ts", "app/**/*.tsx", "**/*.workflow.tsx"],
|
|
14509
|
+
outDir = "dist",
|
|
14510
14510
|
seed = false,
|
|
14511
14511
|
apiUrl: rawApiUrl = "auto",
|
|
14512
14512
|
authToken: explicitToken,
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmapp/react-compiler",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.15",
|
|
4
4
|
"description": "Babel plugin + Vite integration for compiling React workflows to Pure Form IR",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@babel/plugin-syntax-typescript": "^7.24.0",
|
|
67
67
|
"@babel/traverse": "^7.24.0",
|
|
68
68
|
"@babel/types": "^7.24.0",
|
|
69
|
-
"@mmapp/player-core": "^0.1.0-alpha.
|
|
69
|
+
"@mmapp/player-core": "^0.1.0-alpha.15",
|
|
70
70
|
"glob": "^10.3.10"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|