Skip to content

Commit

Permalink
🔧 chore: fix postinstall issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fwestling committed Apr 12, 2024
1 parent a37a28b commit dbc4832
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 49 deletions.
5 changes: 5 additions & 0 deletions .changeset/odd-laws-visit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@first-australia/latitude-scheduler": patch
---

Fixed install issue
97 changes: 48 additions & 49 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,50 @@
{
"name": "@first-australia/latitude-scheduler",
"version": "0.2.0",
"description": "This repository is the latest iteration of the FIRST Australia scheduling software (primarily for use in scheduling FIRST LEGO League tournaments).",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsup",
"test": "jest",
"lint": "pnpm dlx @biomejs/biome lint ./src ",
"lint:files": "pnpm dlx @biomejs/biome lint ./src 2>&1 | egrep '\\.(ts|tsx):' ",
"lint:fix": "pnpm dlx @biomejs/biome lint ./src --apply",
"format": "pnpm dlx @biomejs/biome format ./src --write",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm publish -r",
"postinstall": "pnpm lefthook install"
},
"keywords": [],
"author": "Fred Westling",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.6.1",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.11",
"@types/luxon": "^3.3.7",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"lefthook": "^1.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"luxon": "^3.4.4",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstaustralia/latitude-scheduler.git"
},
"bugs": {
"url": "https://github.com/firstaustralia/latitude-scheduler/issues"
},
"homepage": "https://github.com/firstaustralia/latitude-scheduler#readme"
"name": "@first-australia/latitude-scheduler",
"version": "0.2.0",
"description": "This repository is the latest iteration of the FIRST Australia scheduling software (primarily for use in scheduling FIRST LEGO League tournaments).",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsup",
"test": "jest",
"lint": "pnpm dlx @biomejs/biome lint ./src ",
"lint:files": "pnpm dlx @biomejs/biome lint ./src 2>&1 | egrep '\\.(ts|tsx):' ",
"lint:fix": "pnpm dlx @biomejs/biome lint ./src --apply",
"format": "pnpm dlx @biomejs/biome format ./src --write",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm publish -r"
},
"keywords": [],
"author": "Fred Westling",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.6.1",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.11",
"@types/luxon": "^3.3.7",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"lefthook": "^1.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"luxon": "^3.4.4",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstaustralia/latitude-scheduler.git"
},
"bugs": {
"url": "https://github.com/firstaustralia/latitude-scheduler/issues"
},
"homepage": "https://github.com/firstaustralia/latitude-scheduler#readme"
}

0 comments on commit dbc4832

Please sign in to comment.