Skip to content

Commit

Permalink
Merge pull request #176 from bluecadet/feat/log
Browse files Browse the repository at this point in the history
Feat/log
  • Loading branch information
claytercek authored Nov 23, 2024
2 parents 4056528 + 995ebf2 commit 3697f6e
Show file tree
Hide file tree
Showing 20 changed files with 664 additions and 154 deletions.
7 changes: 7 additions & 0 deletions .changeset/healthy-brooms-hammer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@bluecadet/launchpad": minor
"@bluecadet/launchpad-content": minor
"@bluecadet/launchpad-utils": minor
---

update logging
147 changes: 82 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"changeset": "changeset",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --fix",
"build": "npm run build -w @bluecadet/launchpad",
"dev": "npm run dev -w @bluecadet/launchpad",
"build": "tsc --build",
"dev": "tsc --build --watch",
"docs:build": "npm run build -w @bluecadet/launchpad-docs",
"release": "npm run build && changeset publish",
"test": "vitest"
Expand All @@ -31,9 +31,9 @@
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.23.0",
"@types/node": "^20.3.1",
"@types/node": "^22.9.3",
"sherif": "^1.0.1",
"typescript": "^5.1.3",
"typescript": "^5.7.2",
"vitest": "^2.1.4"
},
"engines": {
Expand Down
6 changes: 3 additions & 3 deletions packages/content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"glob": "^11.0.0",
"jsonpath-plus": "^10.1.0",
"ky": "^1.7.2",
"markdown-it": "^12.3.2",
"markdown-it": "^14.1.0",
"neverthrow": "^8.1.1",
"p-queue": "^7.1.0",
"qs": "^6.11.1",
Expand All @@ -49,11 +49,11 @@
"devDependencies": {
"@bluecadet/launchpad-testing": "0.1.0",
"@bluecadet/launchpad-tsconfig": "0.1.0",
"@types/markdown-it": "^12.2.0",
"@types/markdown-it": "^14.1.2",
"@types/qs": "^6.9.7",
"@types/sanitize-html": "^2.9.0",
"memfs": "^4.14.0",
"msw": "^2.5.1",
"msw": "^2.6.6",
"vitest": "^2.1.4"
}
}
2 changes: 1 addition & 1 deletion packages/content/src/content-plugin-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type ContentHookContext = {
contentOptions: ResolvedContentConfig;
paths: {
getDownloadPath: (source?: string) => string;
getTempPath: (source?: string, pluginName?: string) => string;
getTempPath: (source?: string) => string;
getBackupPath: (source?: string) => string;
};
};
Expand Down
Loading

0 comments on commit 3697f6e

Please sign in to comment.