Skip to content

next: Support for jsrepo.com as a registry provider #539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
6 changes: 6 additions & 0 deletions .changeset/lucky-regions-poke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"jsrepo": major
---

feat: Support jsrepo as a registry provider 🎉

6 changes: 6 additions & 0 deletions .changeset/nine-dingos-chew.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"jsrepo": minor
---

feat: Allow for caching using `make-fetch-happen`

6 changes: 6 additions & 0 deletions .changeset/red-flowers-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"jsrepo": minor
---

feat: Setup registry for publish on jsrepo.com during init

6 changes: 6 additions & 0 deletions .changeset/tasty-taxis-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"jsrepo": minor
---

feat: Always install jsrepo as a dev dependency when initializing a new registry

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ node_modules
dist

# testing
temp-test
temp-test

cache
4 changes: 2 additions & 2 deletions jsrepo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://unpkg.com/jsrepo@1.43.0/schemas/project-config.json",
"repos": ["github/ieedan/std"],
"$schema": "https://unpkg.com/jsrepo@1.47.1/schemas/project-config.json",
"repos": ["@ieedan/std2"],
"includeTests": false,
"watermark": true,
"formatter": "biome",
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"scripts": {
"start": "tsup --silent && node ./dist/index.js",
"build": "tsup",
"run:dev": "node ./dist/index.js",
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check && pnpm check:types",
Expand All @@ -41,6 +42,7 @@
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.2",
"@types/diff": "^7.0.2",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^22.14.0",
"@types/semver": "^7.7.0",
"@types/validate-npm-package-name": "^4.0.2",
Expand All @@ -66,7 +68,7 @@
"get-tsconfig": "^4.10.0",
"ignore": "^7.0.3",
"is-unicode-supported": "^2.1.0",
"node-fetch": "^3.3.2",
"make-fetch-happen": "^14.0.3",
"octokit": "^4.1.2",
"ollama": "^0.5.14",
"openai": "^4.93.0",
Expand All @@ -79,6 +81,7 @@
"semver": "^7.7.1",
"sisteransi": "^1.0.5",
"svelte": "^5.25.9",
"tar": "^7.4.3",
"valibot": "1.0.0",
"validate-npm-package-name": "^6.0.0",
"vue": "^3.5.13"
Expand Down
Loading
Loading