Skip to content

Commit

Permalink
config(CI): 🔧 use Bun to run TS
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil4udo committed Jan 7, 2025
1 parent 0a8a104 commit 6f5ee12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/buefy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"clean": "rimraf css && mkdir css",
"watch": "sass --verbose --error-css --no-source-map --color buefy.scss css/buefy.css --watch",
"compile": "concurrently -c auto \"pnpm:compile:*\" ",
"compile:main": "node --no-warnings --loader @swc-node/register/esm ../../scripts/compile.ts --scope=buefy",
"compile:rtl": "cross-env NODE_ENV=RTL node --no-warnings --loader @swc-node/register/esm ../../scripts/compile.ts --scope=buefy --rtl"
"compile:main": "bun run ../../scripts/compile.ts --scope=buefy",
"compile:rtl": "cross-env NODE_ENV=RTL bun run ../../scripts/compile.ts --scope=buefy --rtl"
},
"dependencies": {
"@bulvar/bulma": "workspace:*"
Expand Down
4 changes: 2 additions & 2 deletions packages/bulma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"clean": "rimraf css && mkdir css",
"watch": "sass --verbose --error-css --no-source-map --color bulma.scss css/bulma.css --watch",
"compile": "concurrently -c auto \"pnpm:compile:*\" ",
"compile:main": "node --no-warnings --loader @swc-node/register/esm ../../scripts/compile.ts --scope=bulma",
"compile:rtl": "cross-env NODE_ENV=RTL node --no-warnings --loader @swc-node/register/esm ../../scripts/compile.ts --scope=bulma --rtl"
"compile:main": "bun run ../../scripts/compile.ts --scope=bulma",
"compile:rtl": "cross-env NODE_ENV=RTL bun run ../../scripts/compile.ts --scope=bulma --rtl"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 6f5ee12

Please sign in to comment.