-
Notifications
You must be signed in to change notification settings - Fork 0
update(major): publish package to github #14
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
base: main
Are you sure you want to change the base?
Changes from all commits
13f5a1d
ccd2cc9
d4c0998
8a76c55
3e8133d
3493910
1d1f3c2
798cbb6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,6 +1,6 @@ | ||||||||
| { | ||||||||
| "name": "@fundwave/fetchq", | ||||||||
| "version": "1.2.2", | ||||||||
| "version": "1.2.4-github-package.1", | ||||||||
| "description": "Queue for fetch requests", | ||||||||
| "main": "dist/esm/index.js", | ||||||||
| "types": "dist/esm/index.d.ts", | ||||||||
|
|
@@ -11,16 +11,16 @@ | |||||||
| }, | ||||||||
| "scripts": { | ||||||||
| "build:esm": "tsc --module NodeNext --outDir ./dist/esm", | ||||||||
| "build": "tsc --module commonjs --outDir ./dist/cjs", | ||||||||
| "prepare": "npm run build && npm run build:esm", | ||||||||
| "build:cjs": "tsc --module commonjs --outDir ./dist/cjs", | ||||||||
| "build": "npm run build:cjs && npm run build:esm", | ||||||||
|
||||||||
| "build": "npm run build:cjs && npm run build:esm", | |
| "build": "npm run build:cjs && npm run build:esm", | |
| "prepare": "npm run build", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The publish command relies on the .npmrc configured earlier, but there's no explicit '--registry' flag or scope verification. Since the package scope is '@fundwave', ensure the package.json includes '"name": "@fundwave/fetch-queue"' to match the registry configuration. Without proper scoping, the publish may fail or publish to the wrong registry.