- Updated @moonrepo/cli to version 2.2.5 and typescript to version 6.0.3 in package.json and shared package.json. - Modified build script in package.json to run shared, api, and web builds. - Removed unnecessary type and language declarations from shared moon.yml. - Added ignoreDeprecations option in tsconfig.base.json to handle TypeScript 6.0 deprecations.
30 lines
554 B
YAML
30 lines
554 B
YAML
tasks:
|
|
dev:
|
|
command: bun run dev
|
|
build:
|
|
command: bun run build
|
|
deps:
|
|
- shared:build
|
|
inputs:
|
|
- src/**/*
|
|
- index.html
|
|
- package.json
|
|
- tsconfig.json
|
|
- tsconfig.node.json
|
|
- vite.config.ts
|
|
- tailwind.config.ts
|
|
- postcss.config.js
|
|
outputs:
|
|
- dist
|
|
typecheck:
|
|
command: bun run typecheck
|
|
deps:
|
|
- shared:typecheck
|
|
inputs:
|
|
- src/**/*
|
|
- package.json
|
|
- tsconfig.json
|
|
- tsconfig.node.json
|
|
- vite.config.ts
|
|
- tailwind.config.ts
|