-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from liam-hq/enhance-syncpack
maintenance: enhance syncpack
- Loading branch information
Showing
9 changed files
with
364 additions
and
411 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,17 +1,41 @@ | ||
{ | ||
"versionGroups": [ | ||
"sortFirst": [ | ||
"name", | ||
"license", | ||
"private", | ||
"version", | ||
"type", | ||
"publishConfig", | ||
"main", | ||
"exports", | ||
"bin", | ||
"dependencies", | ||
"devDependencies", | ||
"peerDependencies", | ||
"scripts", | ||
"packageManager" | ||
], | ||
"sortPackages": true, | ||
"semverGroups": [ | ||
{ | ||
"label": "Use workspace protocol (workspace packages)", | ||
"dependencies": [ | ||
"@apps/*", | ||
"@packages/*", | ||
"@liam/*" | ||
], | ||
"label": "Use exact version numbers", | ||
"range": "", | ||
"dependencyTypes": [ | ||
"prod", | ||
"dev" | ||
], | ||
"pinVersion": "workspace:*" | ||
"dependencies": [ | ||
"**" | ||
], | ||
"packages": [ | ||
"**" | ||
] | ||
} | ||
], | ||
"versionGroups": [ | ||
{ | ||
"dependencies": ["$LOCAL"], | ||
"isIgnored": 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 |
---|---|---|
@@ -1,21 +1,24 @@ | ||
{ | ||
"name": "liam-frontend", | ||
"version": "0.0.1", | ||
"private": true, | ||
"version": "0.0.1", | ||
"devDependencies": { | ||
"@turbo/gen": "2.1.2", | ||
"syncpack": "13.0.0", | ||
"turbo": "2.1.2" | ||
}, | ||
"scripts": { | ||
"build": "turbo build", | ||
"dev": "turbo dev", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:turbo": "turbo lint", | ||
"lint:packageVersion": "syncpack list-mismatches", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:syncpack-fix": "syncpack fix-mismatches", | ||
"fmt:syncpack-format": "syncpack format", | ||
"fmt:turbo": "turbo fmt", | ||
"gen:turbo": "turbo gen", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:syncpack": "syncpack lint", | ||
"lint:turbo": "turbo lint", | ||
"test:turbo": "turbo test" | ||
}, | ||
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b", | ||
"devDependencies": { | ||
"@turbo/gen": "^2.1.2", | ||
"syncpack": "^13.0.0", | ||
"turbo": "^2.1.2" | ||
} | ||
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b" | ||
} |
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
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
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,31 +1,31 @@ | ||
{ | ||
"name": "@liam/db-structure", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"type": "module", | ||
"version": "0.0.1", | ||
"scripts": { | ||
"build": "tsc", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:biome": "biome check .", | ||
"lint:tsc": "tsc --noEmit", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe .", | ||
"test": "vitest --watch=false", | ||
"gen:parser": "./scripts/generateParser.sh" | ||
}, | ||
"type": "module", | ||
"main": "dist/index.js", | ||
"dependencies": { | ||
"pgsql-parser": "^13.16.0", | ||
"pgsql-parser": "13.16.0", | ||
"valibot": "^1.0.0-beta.5" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.3", | ||
"@pgsql/types": "^15.0.2", | ||
"@liam/configs": "workspace:*", | ||
"lodash-es": "^4.17.21", | ||
"peggy": "^4.1.1", | ||
"pluralize-esm": "^9.0.5", | ||
"typescript": "^5", | ||
"vitest": "^2.1.4" | ||
} | ||
"@pgsql/types": "15.0.2", | ||
"lodash-es": "4.17.21", | ||
"peggy": "4.1.1", | ||
"pluralize-esm": "9.0.5", | ||
"typescript": "5", | ||
"vitest": "2.1.4" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe .", | ||
"gen:parser": "./scripts/generateParser.sh", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:biome": "biome check .", | ||
"lint:tsc": "tsc --noEmit", | ||
"test": "vitest --watch=false" | ||
}, | ||
"types": "dist/index.d.ts" | ||
} |
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,29 +1,29 @@ | ||
{ | ||
"name": "@liam/erd-core", | ||
"main": "src/index.ts", | ||
"version": "0.0.1", | ||
"type": "module", | ||
"main": "src/index.ts", | ||
"dependencies": { | ||
"@xyflow/react": "12.3.5", | ||
"react": "18" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.3", | ||
"@liam/configs": "workspace:*", | ||
"@liam/db-structure": "workspace:*", | ||
"@types/react": "18", | ||
"typed-css-modules": "0.9.1", | ||
"typescript": "5" | ||
}, | ||
"scripts": { | ||
"dev": "pnpm run '/^dev:.*/'", | ||
"dev:css": "tcm src --watch", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe .", | ||
"gen": "pnpm run '/^gen:.*/'", | ||
"gen:css": "tcm src", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:biome": "biome check .", | ||
"lint:tsc": "tsc --noEmit", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe ." | ||
}, | ||
"dependencies": { | ||
"@xyflow/react": "^12.3.5", | ||
"react": "^18" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.3", | ||
"@liam/db-structure": "workspace:*", | ||
"@liam/configs": "workspace:*", | ||
"@types/react": "^18", | ||
"typed-css-modules": "^0.9.1", | ||
"typescript": "^5" | ||
"lint:tsc": "tsc --noEmit" | ||
} | ||
} |
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,18 +1,19 @@ | ||
{ | ||
"name": "@liam/figma-to-css-variables", | ||
"version": "0.0.0", | ||
"main": "bin/index.mjs", | ||
"scripts": { | ||
"sync": "node bin/index.mjs", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:biome": "biome check .", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe ." | ||
"dependencies": { | ||
"style-dictionary": "4.1.3" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.3", | ||
"@liam/configs": "workspace:*" | ||
}, | ||
"dependencies": { | ||
"style-dictionary": "^4.1.3" | ||
"scripts": { | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe .", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:biome": "biome check .", | ||
"sync": "node bin/index.mjs" | ||
} | ||
} |
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,30 +1,31 @@ | ||
{ | ||
"name": "@liam/ui", | ||
"version": "0.0.0", | ||
"main": "src/index.ts", | ||
"dependencies": { | ||
"@radix-ui/react-dropdown-menu": "2.1.2", | ||
"@radix-ui/react-tooltip": "1.1.3", | ||
"clsx": "2.1.1", | ||
"lucide-react": "0.451.0", | ||
"ts-pattern": "5.4.0" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.3", | ||
"@liam/configs": "workspace:*", | ||
"@storybook/react": "8.3.4", | ||
"@types/react": "18", | ||
"typed-css-modules": "0.9.1", | ||
"typescript": "5" | ||
}, | ||
"scripts": { | ||
"dev": "pnpm run '/^dev:.*/'", | ||
"dev:css": "tcm src --watch", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe .", | ||
"gen": "pnpm run '/^gen:.*/'", | ||
"gen:css": "tcm src", | ||
"lint": "pnpm run '/^lint:.*/'", | ||
"lint:biome": "biome check .", | ||
"lint:tsc": "tsc --noEmit", | ||
"fmt": "pnpm run '/^fmt:.*/'", | ||
"fmt:biome": "biome check --write --unsafe ." | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.3", | ||
"@liam/configs": "workspace:*", | ||
"@storybook/react": "^8.3.4", | ||
"@types/react": "^18", | ||
"typed-css-modules": "^0.9.1", | ||
"typescript": "^5" | ||
}, | ||
"dependencies": { | ||
"@radix-ui/react-dropdown-menu": "^2.1.2", | ||
"@radix-ui/react-tooltip": "^1.1.3", | ||
"clsx": "^2.1.1", | ||
"lucide-react": "^0.451.0", | ||
"ts-pattern": "^5.4.0" | ||
"lint:tsc": "tsc --noEmit" | ||
} | ||
} |
Oops, something went wrong.