forked from FlowiseAI/Flowise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add turbo, changes to make it work across docker, docker-compose, npx
- Loading branch information
1 parent
2356cc7
commit 8ce3217
Showing
15 changed files
with
25,796 additions
and
36,881 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
shared-workspace-lockfile=false | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=*prettier* | ||
public-hoist-pattern[]=@types* | ||
auto-install-peers = true | ||
strict-peer-dependencies = false | ||
prefer-workspace-packages = true | ||
link-workspace-packages = deep | ||
hoist = true | ||
shamefully-hoist = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,14 @@ | |
"components" | ||
], | ||
"scripts": { | ||
"preinstall": "npx only-allow pnpm", | ||
"dev": "kill-port 3000 5173 && pnpm --filter './packages/**' dev", | ||
"build": "pnpm clean && pnpm -r --filter \"./packages/**\" build", | ||
"start": "kill-port 3000 && run-script-os", | ||
"build": "turbo run build", | ||
"build-force": "pnpm clean && turbo run build --force", | ||
"dev": "turbo run dev --parallel", | ||
"start": "run-script-os", | ||
"start:windows": "cd packages/server/bin && run start", | ||
"start:default": "cd packages/server/bin && ./run start", | ||
"clean": " pnpm --filter './packages/**' clean", | ||
"nuke": " pnpm --filter './packages/**' nuke && rimraf node_modules", | ||
"clean": "pnpm --filter \"./packages/**\" clean", | ||
"nuke": "pnpm --filter \"./packages/**\" nuke && rimraf node_modules", | ||
"format": "prettier --write \"**/*.{ts,tsx,md}\"", | ||
"lint": "eslint \"**/*.{js,jsx,ts,tsx,json,md}\"", | ||
"lint-fix": "pnpm lint --fix", | ||
|
@@ -49,9 +49,16 @@ | |
"pretty-quick": "^3.1.3", | ||
"rimraf": "^3.0.2", | ||
"run-script-os": "^1.1.6", | ||
"turbo": "1.10.16", | ||
"typescript": "^4.8.4" | ||
}, | ||
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"onlyBuiltDependencies": [ | ||
"sqlite3" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=18.15.0" | ||
"node": ">=18.15.0 <19.0.0 || ^20" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.