Skip to content

Commit

Permalink
update biome to 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstyles committed May 11, 2024
1 parent 5367abd commit df98862
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 45 deletions.
14 changes: 12 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.7.2/schema.json",
"organizeImports": {
"enabled": true
},
Expand All @@ -11,6 +11,16 @@
"ignore": ["dist", "node_modules"]
},
"formatter": {
"enabled": true
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"javascript": {
"jsxRuntime": "transparent",
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double",
"semicolons": "asNeeded"
}
}
}
86 changes: 43 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "urban-ui",
"description": "UI components powered by react-aria and vanilla-extract",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "Matt Styles",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*",
"packages/core/*",
"packages/control/*",
"packages/layout/*",
"packages/typography/*",
"packages/utility/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattstyles/urban-ui.git"
},
"scripts": {
"test": "CI=true turbo run test",
"build:ci": "turbo run build --filter=\"./packages/**\"",
"build:all": "turbo run build",
"dev": "turbo run clean && turbo run dev --parallel",
"lint": "turbo run lint",
"type:check": "turbo run type:check",
"format": "biome format --write {packages,scripts,apps}",
"scaffold": "node packages/tmpl/dist/bin/tmpl.js",
"gen": "turbo gen",
"publish-packages": "CI=true turbo run build lint test && changeset version && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@changesets/cli": "^2.27.1",
"@turbo/gen": "^1.13.0",
"turbo": "^1.13.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.1.3"
"name": "urban-ui",
"description": "UI components powered by react-aria and vanilla-extract",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "Matt Styles",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*",
"packages/core/*",
"packages/control/*",
"packages/layout/*",
"packages/typography/*",
"packages/utility/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattstyles/urban-ui.git"
},
"scripts": {
"test": "CI=true turbo run test",
"build:ci": "turbo run build --filter=\"./packages/**\"",
"build:all": "turbo run build",
"dev": "turbo run clean && turbo run dev --parallel",
"lint": "turbo run lint",
"type:check": "turbo run type:check",
"format": "biome format --write {packages,scripts,apps}",
"scaffold": "node packages/tmpl/dist/bin/tmpl.js",
"gen": "turbo gen",
"publish-packages": "CI=true turbo run build lint test && changeset version && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@changesets/cli": "^2.27.1",
"@turbo/gen": "^1.13.0",
"turbo": "^1.13.0",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.1.3"
}

0 comments on commit df98862

Please sign in to comment.