Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
chore: add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
hanspagel committed Jan 29, 2024
1 parent 15b01bb commit b9a6146
Show file tree
Hide file tree
Showing 4 changed files with 1,694 additions and 90 deletions.
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": ["@changesets/cli/commit", { "skipCI": false }],
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"format": "pnpm -r format",
"cli:link": "pnpm --filter @scalar/cli cli:link",
"build": "pnpm -r build"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}
86 changes: 42 additions & 44 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,44 @@
{
"name": "@scalar/cli",
"scripts": {
"@scalar/cli": "pnpm vite-node src/index.ts",
"test": "vitest",
"lint": "pnpm dlx @biomejs/biome lint .",
"format": "pnpm dlx @biomejs/biome check . --apply",
"cli:link": "pnpm run build && npm unlink -g && npm link",
"build": "rm -Rf dist/ && tsc && rollup -c"
},
"type": "module",
"version": "0.1.0",
"bin": {
"scalar": "./dist/index.js"
},
"files": [
"./dist"
],
"dependencies": {
"@hono/node-server": "^1.5.0",
"@scalar/api-reference": "^1.13.15",
"@seriousme/openapi-schema-validator": "^2.1.6",
"commander": "^11.1.0",
"hono": "^3.12.6",
"kleur": "^4.1.5",
"openapi-types": "^12.1.3",
"prettier": "^3.2.4",
"prettyjson": "^1.2.5",
"prompts": "^2.4.2",
"toml-js": "^0.0.8",
"vite-node": "^1.2.1",
"vitest": "^1.2.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.5",
"execa": "^8.0.1",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"strip-ansi": "^7.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
"name": "@scalar/cli",
"scripts": {
"@scalar/cli": "pnpm vite-node src/index.ts",
"test": "vitest",
"lint": "pnpm dlx @biomejs/biome lint .",
"format": "pnpm dlx @biomejs/biome check . --apply",
"cli:link": "pnpm run build && npm unlink -g && npm link",
"build": "rm -Rf dist/ && tsc && rollup -c"
},
"type": "module",
"version": "0.0.0",
"bin": {
"scalar": "./dist/index.js"
},
"files": ["./dist"],
"dependencies": {
"@hono/node-server": "^1.5.0",
"@scalar/api-reference": "^1.13.15",
"@seriousme/openapi-schema-validator": "^2.1.6",
"commander": "^11.1.0",
"hono": "^3.12.6",
"kleur": "^4.1.5",
"openapi-types": "^12.1.3",
"prettier": "^3.2.4",
"prettyjson": "^1.2.5",
"prompts": "^2.4.2",
"toml-js": "^0.0.8",
"vite-node": "^1.2.1",
"vitest": "^1.2.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.5",
"execa": "^8.0.1",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"strip-ansi": "^7.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit b9a6146

Please sign in to comment.