-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
14,409 additions
and
9,869 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,10 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{js,json,yml}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 |
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,4 @@ | ||
/.yarn/** linguist-vendored | ||
/.yarn/releases/* binary | ||
/.yarn/plugins/**/* binary | ||
/.pnp.* binary linguist-generated |
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,19 +1,15 @@ | ||
name: 'Install' | ||
description: 'Sets up Node.js and runs install' | ||
name: "Install" | ||
description: "Sets up Node.js and runs install" | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 7 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: 'pnpm' | ||
registry-url: "https://registry.npmjs.org" | ||
cache: "yarn" | ||
|
||
- name: Setup Git User | ||
shell: bash | ||
|
@@ -23,4 +19,4 @@ runs: | |
- name: Install dependencies | ||
shell: bash | ||
run: pnpm install | ||
run: yarn install --frozen-lockfile |
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
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
yarnPath: .yarn/releases/yarn-4.0.1.cjs | ||
nmHoistingLimits: dependencies |
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
"private": true, | ||
"description": "The repository of css panda", | ||
"scripts": { | ||
"prepare": "pnpm build-fast", | ||
"dev": "pnpm -r --parallel --filter=./packages/** dev", | ||
"build-fast": "pnpm -r --parallel --filter=./packages/** build-fast", | ||
"build": "pnpm -r --filter=./packages/** build", | ||
"prepare": "yarn build-fast", | ||
"dev": "yarn workspaces foreach --all -pt run dev", | ||
"build-fast": "yarn workspaces foreach --all -pt run build-fast", | ||
"build": "yarn workspaces foreach --all run build", | ||
"test": "vitest", | ||
"lint": "eslint packages --ext .ts", | ||
"fmt": "prettier --write packages", | ||
|
@@ -29,5 +29,8 @@ | |
"typescript": "5.2.2", | ||
"vitest": "0.33.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"workspaces": [ | ||
"packages/*" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# vscode |
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,5 +1,6 @@ | ||
{ | ||
"publisher": "chakra-ui", | ||
"packageManager": "[email protected]", | ||
"name": "panda-css-vscode", | ||
"displayName": "🐼 Panda CSS", | ||
"description": "The official Panda CSS plugin for VS Code", | ||
|
@@ -195,18 +196,18 @@ | |
"directory": "packages/vscode" | ||
}, | ||
"scripts": { | ||
"build:lsp": "pnpm --filter=../language-server build", | ||
"build:shared": "pnpm --filter=../shared build", | ||
"build:ts-plugin": "pnpm --filter=../ts-plugin build", | ||
"build:all": "pnpm build:shared && pnpm build:lsp && pnpm build:ts-plugin", | ||
"build:lsp": "yarn workspaces focus @pandacss/language-server build", | ||
"build:shared": "yarn workspaces focus @pandacss/extension-shared build", | ||
"build:ts-plugin": "yarn workspaces focus @pandacss/ts-plugin build", | ||
"build:all": "yarn build:shared && yarn build:lsp && yarn build:ts-plugin", | ||
"build": "tsup", | ||
"dev": "tsup --watch src/index.ts --watch ../language-server/dist/index.js --watch ../shared/dist/index.js --watch ../ts-plugin/dist/index.js", | ||
"clean": "rimraf dist node_modules", | ||
"typecheck": "tsc --noEmit", | ||
"rewrite-deps": "tsx ./scripts/rewrite-workspace-dependencies.ts", | ||
"override-esbuild": "tsx ./scripts/override-esbuild-with-wasm.ts", | ||
"release": "pnpm build --silent && tsx ./scripts/publish.ts", | ||
"local:build": "pnpm rewrite-deps && pnpm clean && pnpm override-esbuild && npm i --ignore-scripts && pnpm build:all && pnpm build && pnpm vsix-builder package" | ||
"release": "yarn build --silent && tsx ./scripts/publish.ts", | ||
"local:build": "yarn build:all && yarn build && yarn vsix-builder package" | ||
}, | ||
"dependencies": { | ||
"@pandacss/dev": "^0.17.0", | ||
|
@@ -225,12 +226,14 @@ | |
"devDependencies": { | ||
"@pandacss/extension-shared": "workspace:^", | ||
"@pandacss/language-server": "workspace:^", | ||
"@pandacss/types": "^0.17.3", | ||
"@pandacss/vsix-builder": "workspace:^", | ||
"@pnpm/find-workspace-dir": "^6.0.2", | ||
"@pnpm/find-workspace-packages": "^6.0.9", | ||
"@pnpm/types": "^9.4.0", | ||
"@types/node": "20.4.5", | ||
"@types/vscode": "^1.80.0", | ||
"@vscode/vsce": "^2.20.0", | ||
"@types/vscode": "^1.67.0", | ||
"@vscode/vsce": "^2.22.0", | ||
"dotenv": "^16.3.1", | ||
"execa": "7.2.0", | ||
"fs-extra": "11.1.1", | ||
|
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
Oops, something went wrong.