Skip to content

Commit

Permalink
chore: config stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
zaida04 committed Jan 19, 2024
1 parent ba52708 commit d4705c1
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 58 deletions.
6 changes: 4 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
"organizeImports": {
"enabled": true
},
"formatter": {
"files": {
"ignore": [
"dist",
"node_modules",
"types",
".next"
],
]
},
"formatter": {
"enabled": true,
"lineEnding": "lf",
"indentWidth": 200,
Expand Down
Binary file modified bun.lockb
Binary file not shown.
109 changes: 55 additions & 54 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,59 @@
{
"name": "@guildedjs/main",
"private": true,
"version": "0.0.0",
"description": "Overarching repository for the Guilded.JS repository",
"author": "Zaid \"Nico\" <contact@nico.engineer>",
"scripts": {
"build": "turbo run build",
"build:typecheck": "turbo run build:typecheck",
"check": "biome check apps packages services",
"check:fix": "biome check --apply-unsafe apps packages services",
"changeset": "changeset",
"changeset:version": "changeset version",
"docs": "typedoc && cd docs && find . -type f -name \"*.html\" -exec sed -i'' -e 's/__namedParameters/options/g' {} +",
"prepublishOnly": "turbo run prepublishOnly",
"prepare": "husky install"
"name": "@guildedjs/main",
"private": true,
"version": "0.0.0",
"description": "Overarching repository for the Guilded.JS repository",
"author": "Zaid \"Nico\" <contact@nico.engineer>",
"scripts": {
"build": "turbo run build",
"build:typecheck": "turbo run build:typecheck",
"check": "biome check apps packages services",
"check:fix": "biome check --apply-unsafe apps packages services",
"changeset": "changeset",
"changeset:version": "changeset version",
"docs": "typedoc && cd docs && find . -type f -name \"*.html\" -exec sed -i'' -e 's/__namedParameters/options/g' {} +",
"prepublishOnly": "turbo run prepublishOnly",
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "1.5.2",
"@changesets/cli": "^2.26.1",
"@types/node": "18.16.12",
"dotenv": "16.0.3",
"gen-esm-wrapper": "1.1.3",
"husky": "7.0.4",
"lint-staged": "13.2.2",
"nodemon": "^2.0.22",
"rimraf": "5.0.1",
"turbo": "^1.11.2",
"typedoc": "0.24.7",
"typescript": "5.0.4"
},
"contributors": [
{
"name": "Zaid \"Nico\"",
"email": "contact@nico.engineer",
"url": "https://github.com/zaida04"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "18.16.12",
"dotenv": "16.0.3",
"gen-esm-wrapper": "1.1.3",
"husky": "7.0.4",
"lint-staged": "13.2.2",
"nodemon": "^2.0.22",
"rimraf": "5.0.1",
"turbo": "^1.11.2",
"typedoc": "0.24.7",
"typescript": "5.0.4"
{
"name": "Skillz4Killz",
"email": "guildedjs@drskillz.33mail.com",
"url": "https://github.com/Skillz4Killz"
},
"contributors": [
{
"name": "Zaid \"Nico\"",
"email": "contact@nico.engineer",
"url": "https://github.com/zaida04"
},
{
"name": "Skillz4Killz",
"email": "guildedjs@drskillz.33mail.com",
"url": "https://github.com/Skillz4Killz"
},
{
"name": "Uhuh \"Dylan\"",
"email": "dylan@panku.io",
"url": "https://github.com/uhuh"
},
{
"name": "DaStormer",
"email": "dastormer@stormdevelopmentz.xyz",
"url": "https://github.com/DaStormer"
}
],
"workspaces": [
"packages/*",
"services/*",
"apps/*"
]
{
"name": "Uhuh \"Dylan\"",
"email": "dylan@panku.io",
"url": "https://github.com/uhuh"
},
{
"name": "DaStormer",
"email": "dastormer@stormdevelopmentz.xyz",
"url": "https://github.com/DaStormer"
}
],
"workspaces": [
"packages/*",
"services/*",
"apps/*"
]
}
16 changes: 14 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,22 @@
"dependsOn": [
"^build:typecheck"
],
"outputs": [
"dist"
],
"inputs": [
"**/*.{ts,tsx}"
"src/**/*.{ts,tsx}"
]
},
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist"
],
"inputs": [
"**/*.{ts,tsx}"
"src/**/*.{ts,tsx}"
]
},
"check": {
Expand All @@ -30,6 +36,12 @@
"^check:fix"
],
"cache": false
},
"prepublishOnly": {
"dependsOn": [
"^prepublishOnly"
],
"cache": false
}
}
}

0 comments on commit d4705c1

Please sign in to comment.