Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
- uses: oven-sh/setup-bun@v1
with:
node-version: '16'
bun-version: latest

- name: Bootstrap packages
run: yarn bootstrap:ci
run: bun bootstrap:ci

- name: Lint
run: yarn lint
run: bun lint
Binary file added bun.lockb
Binary file not shown.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"packages/*"
],
"scripts": {
"bootstrap": "yarn --prefer-offline && yarn build",
"bootstrap:ci": "yarn --frozen-lockfile --ignore-optional && yarn build",
"references": "node ./scripts/remove-tsc-output.js && node ./scripts/copy-none-ts-files.js && yarn fix-ts-references --fix",
"build": "yarn references && tsc -b ./tsconfig.solution.json",
"watch": "yarn references && tsc -b ./tsconfig.solution.json --watch",
"bootstrap": "bun i && bun run build",
"bootstrap:ci": "bun i && bun run build",
"references": "node ./scripts/remove-tsc-output.js && node ./scripts/copy-none-ts-files.js && bunx fix-ts-references --fix",
"build": "bun run references && tsc -b ./tsconfig.solution.json",
"watch": "bun run references && tsc -b ./tsconfig.solution.json --watch",
"lint": "TIMING=1 eslint . --ext .js,.ts,.tsx,.jsx --report-unused-disable-directives",
"format": "eslint . --ext .js,.ts,.tsx,.jsx --fix",
"docs:build": "yarn docusaurus-tde build",
"docs:start": "yarn docusaurus-tde start"
"docs:build": "bunx docusaurus-tde build",
"docs:start": "bunx docusaurus-tde start"
},
"devDependencies": {
"@docusaurus-tde/cli": "^0.0.5",
Expand Down
Loading