Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meta: update packages #94

Merged
merged 5 commits into from
Dec 28, 2024
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: oven-sh/setup-bun@v1
- run: npm i
- run: npm test
- uses: pnpm/action-setup@v2
with:
version: latest
- run: pnpm i
- run: pnpm run test
56 changes: 37 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,52 @@
"version": "0.0.0",
"author": "03b8 <[email protected]>",
"license": "MIT",
"private": false,
"private": true,
"scripts": {
"build": "pnpm run --filter @heliosgraphics/fractures build",
"build:fractures": "pnpm run --filter @heliosgraphics/fractures build",
"build:icons": "pnpm run --filter @heliosgraphics/icons build",
"export:icons": "pnpm run --filter @heliosgraphics/icons export",
"prettier:write": "prettier --no-semi --use-tabs --write ./packages/**",
"pub:fractures": "pnpm publish --access public --filter @heliosgraphics/fractures",
"pub:icons": "pnpm publish --access public --filter @heliosgraphics/icons",
"pub:ui": "pnpm publish --access public --filter @heliosgraphics/ui",
"pub:utils": "pnpm publish --access public --filter @heliosgraphics/utils",
"test": "NODE_ENV=test vitest run",
"test:bench": "pnpm run --filter @heliosgraphics/benchmark bench",
"test:fractures": "NODE_ENV=test vitest run",
"test:bench": "pnpm run --filter @heliosgraphics/benchmarks bench",
"test:coverage": "NODE_ENV=test vitest run --coverage",
"test:u": "NODE_ENV=test vitest run --update",
"test:update": "NODE_ENV=test vitest run --update",
"test:watch": "NODE_ENV=test vitest",
"test:coverage": "NODE_ENV=test vitest run --coverage",
"pub:fractures": "pnpm publish --access public --filter fractures",
"pub:utils": "pnpm publish --access public --filter utils",
"prettier:write": "prettier --no-semi --use-tabs --write ./packages/**"
"ts:watch": "tsc --noEmit --incremental --watch --project ./packages/workshop/tsconfig.json"
},
"workspaces": [
"packages/*"
],
"dependencies": {},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jsdom": "25.0.1",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vite": "6.0.5",
"vitest": "2.1.8"
}
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.1.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"jsdom": "^25.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
},
"trustedDependencies": [
"esbuild"
]
}
9 changes: 4 additions & 5 deletions packages/benchmarks/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"name": "@heliosgraphics/benchmark",
"name": "@heliosgraphics/benchmarks",
"version": "0.0.0",
"type": "module",
"author": "03b8 <[email protected]>",
"license": "MIT",
"private": false,
"private": true,
"description": "benchmark",
"scripts": {
"bench": "bun run *.ts"
},
"engines": {
"node": ">=20.15.0"
"dependencies": {
"benchmark": "latest"
},
"devDependencies": {
"@types/uuid": "latest",
"@types/benchmark": "latest",
"@types/lodash": "latest",
"benchmark": "latest",
"lodash": "latest"
}
}
38 changes: 38 additions & 0 deletions packages/components/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.cache
.DS_Store
.env
.env.development.local
.env.local
.env.test
.eslintcache
.git
.github
.next
.node_repl_history
.nova
.now
.npm
.sentryclirc
.tmp
.turbo
.vercel
.vscode
.yarn
.yarn-integrity
*.lcov
*.log
*.pid
*.pid.lock
*.seed
*.tsbuildinfo
# next-env.d.ts
coverage
dist
logs
node_modules/
npm-debug.log*
pids
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
typings/
yarn-debug.log*
yarn-error.log*
Loading
Loading