From dbc4832dff7030dbb94795ca2e3ac7bea9aaf804 Mon Sep 17 00:00:00 2001 From: Fred Westling Date: Fri, 12 Apr 2024 15:28:44 +1000 Subject: [PATCH] :wrench: chore: fix postinstall issue --- .changeset/odd-laws-visit.md | 5 ++ package.json | 97 ++++++++++++++++++------------------ 2 files changed, 53 insertions(+), 49 deletions(-) create mode 100644 .changeset/odd-laws-visit.md diff --git a/.changeset/odd-laws-visit.md b/.changeset/odd-laws-visit.md new file mode 100644 index 0000000..a20adfb --- /dev/null +++ b/.changeset/odd-laws-visit.md @@ -0,0 +1,5 @@ +--- +"@first-australia/latitude-scheduler": patch +--- + +Fixed install issue diff --git a/package.json b/package.json index 59b5581..b2e2656 100644 --- a/package.json +++ b/package.json @@ -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" }