diff --git a/.changeset/three-doors-talk.md b/.changeset/three-doors-talk.md new file mode 100644 index 0000000..127bfcc --- /dev/null +++ b/.changeset/three-doors-talk.md @@ -0,0 +1,5 @@ +--- +"@zayne-labs/callapi": patch +--- + +add provenance tag to publish command diff --git a/.vscode/settings.json b/.vscode/settings.json index 7512cac..4a85fa2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { "typescript.tsdk": "node_modules\\typescript\\lib", - "cSpell.words": ["treeshake"], + "cSpell.words": ["attw", "callapi", "publint", "treeshake", "TSUP"], "arrayIndexInlay.enabled": false } diff --git a/package.json b/package.json index eb62078..ea6ee00 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,9 @@ "test:attw": "attw --pack . --exclude-entrypoints utils", "test:release": "pkg-pr-new publish", "build": "tsup", - "build:dev": "concurrently --prefix-colors \"#7da4f8.bold,yellow.bold\" --names TSUP,PUBLINT,ATTW \"pnpm tsup --watch\"' 'pnpm:test:publint' 'pnpm:test:attw'", + "build:dev": "concurrently --prefix-colors \"yellow.bold,#7da4f8.bold,magenta\" --names PUBLINT,TSUP,ATTW 'pnpm:test:publint' \"pnpm build --watch\" 'pnpm:test:attw'", "version-package": "changeset version", - "release": "changeset publish" + "release": "changeset publish --provenance" }, "exports": { ".": { diff --git a/tsup.config.ts b/tsup.config.ts index f667e29..cf3b9e3 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -7,7 +7,7 @@ export default defineConfig((options) => { clean: true, // clean up dist folder, dts: true, minify: isProduction ? "terser" : false, - name: "callapi", + name: "", sourcemap: isProduction, tsconfig: "tsconfig.json", } satisfies Options;