-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update deps * chore: fix versions * fix: ark recipes * fix: segment group * fix: playground * chore: update recipes * test: skip solid for now * chore: update * fix: website * chore: resolve playground * docs: update * fix: playground * test: fix solid codegen * docs: update
- Loading branch information
1 parent
7e70b6b
commit ba67381
Showing
87 changed files
with
8,579 additions
and
9,605 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@pandacss/dev': patch | ||
--- | ||
|
||
Fix issue in `defineParts` where it silently fails if a part not defined is used. It now errors with a helpful message |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +0,0 @@ | ||
#!/usr/bin/env sh | ||
if [ -z "$husky_skip_init" ]; then | ||
debug () { | ||
if [ "$HUSKY_DEBUG" = "1" ]; then | ||
echo "husky (debug) - $1" | ||
fi | ||
} | ||
|
||
readonly hook_name="$(basename -- "$0")" | ||
debug "starting $hook_name..." | ||
|
||
if [ "$HUSKY" = "0" ]; then | ||
debug "HUSKY env variable is set to 0, skipping hook" | ||
exit 0 | ||
fi | ||
|
||
if [ -f ~/.huskyrc ]; then | ||
debug "sourcing ~/.huskyrc" | ||
. ~/.huskyrc | ||
fi | ||
|
||
readonly husky_skip_init=1 | ||
export husky_skip_init | ||
sh -e "$0" "$@" | ||
exitCode="$?" | ||
|
||
if [ $exitCode != 0 ]; then | ||
echo "husky - $hook_name hook exited with code $exitCode (error)" | ||
fi | ||
|
||
if [ $exitCode = 127 ]; then | ||
echo "husky - command not found in PATH=$PATH" | ||
fi | ||
|
||
exit $exitCode | ||
fi | ||
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 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"scripts": { | ||
"playground": "pnpm --filter=./playground", | ||
"build:playground": "pnpm --filter {./playground}... build", | ||
"prepare": "husky install && pnpm build-fast", | ||
"prepare": "husky && pnpm build-fast", | ||
"dev": "pnpm --parallel --filter=./packages/** dev", | ||
"build-fast": "pnpm -r --parallel --filter=./packages/** build-fast", | ||
"build": "pnpm -r --filter=./packages/** build", | ||
|
@@ -34,31 +34,31 @@ | |
"author": "Segun Adebayo <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@changesets/changelog-github": "0.4.8", | ||
"@changesets/cli": "2.26.2", | ||
"chokidar": "^3.5.3", | ||
"concurrently": "^8.2.0", | ||
"cross-env": "^7.0.3", | ||
"happy-dom": "^12.1.6", | ||
"husky": "8.0.3", | ||
"lint-staged": "13.2.3", | ||
"mdx-local-link-checker": "^2.1.1", | ||
"rimraf": "^5.0.1", | ||
"ts-morph": "19.0.0", | ||
"tsup": "8.0.1", | ||
"tsx": "3.12.10", | ||
"@changesets/changelog-github": "0.5.0", | ||
"@changesets/cli": "2.27.1", | ||
"chokidar": "3.6.0", | ||
"concurrently": "8.2.2", | ||
"cross-env": "7.0.3", | ||
"happy-dom": "13.3.8", | ||
"husky": "9.0.11", | ||
"lint-staged": "15.2.2", | ||
"mdx-local-link-checker": "2.1.1", | ||
"rimraf": "5.0.5", | ||
"ts-morph": "20.0.0", | ||
"tsup": "8.0.2", | ||
"tsx": "4.7.1", | ||
"typescript": "5.3.3", | ||
"vite-tsconfig-paths": "4.3.1", | ||
"vitest": "1.2.2" | ||
"vitest": "1.3.0" | ||
}, | ||
"devDependencies": { | ||
"@types/eslint": "8.44.1", | ||
"@types/node": "20.4.5", | ||
"@typescript-eslint/eslint-plugin": "6.2.1", | ||
"@typescript-eslint/parser": "6.2.1", | ||
"eslint": "^8.54.0", | ||
"eslint-config-prettier": "^8.9.0", | ||
"prettier": "^2.8.8" | ||
"@types/eslint": "8.56.2", | ||
"@types/node": "20.11.19", | ||
"@typescript-eslint/eslint-plugin": "7.0.1", | ||
"@typescript-eslint/parser": "7.0.1", | ||
"eslint": "8.56.0", | ||
"eslint-config-prettier": "9.1.0", | ||
"prettier": "2.8.8" | ||
}, | ||
"lint-staged": { | ||
"packages/**/*.{ts,tsx}": [ | ||
|
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
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
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
2 changes: 1 addition & 1 deletion
2
packages/generator/src/artifacts/generated/is-valid-prop.mjs.json
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,6 @@ | |
"dist" | ||
], | ||
"devDependencies": { | ||
"mdn-data": "^2.0.32" | ||
"mdn-data": "2.4.0" | ||
} | ||
} |
Oops, something went wrong.