Skip to content

Commit

Permalink
meta: update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispuska committed Dec 28, 2024
1 parent 76c36ed commit 02d3ba3
Show file tree
Hide file tree
Showing 744 changed files with 16,019 additions and 590 deletions.
60 changes: 40 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,54 @@
"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": {},
"dependencies": {
"@heliosgraphics/ui": "^1.8.6",
"@rollup/rollup-darwin-x64": "^4.29.1",
"rollup": "^4.29.1"
},
"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",
"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

0 comments on commit 02d3ba3

Please sign in to comment.