11# Release Process
22
3- This document outlines the standardized release process for ` @scottluskcis/outport ` .
3+ This document outlines the standardized release process for ` @scottluskcis/export-toolkit ` .
44
55## Pre-Release Checklist
66
@@ -49,8 +49,8 @@ Follow the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format:
4949 - ** Security** - Security improvements
50504 . ** Update comparison links at bottom of file** :
5151 ``` markdown
52- [unreleased]: https://github.com/scottluskcis/outport /compare/vX.Y.Z...HEAD
53- [x.y.z]: https://github.com/scottluskcis/outport /compare/vX.Y.Z-1...vX.Y.Z
52+ [unreleased]: https://github.com/scottluskcis/export-toolkit /compare/vX.Y.Z...HEAD
53+ [x.y.z]: https://github.com/scottluskcis/export-toolkit /compare/vX.Y.Z-1...vX.Y.Z
5454 ```
5555
5656Example:
@@ -69,8 +69,8 @@ Example:
6969
7070- Bug fix for issue #123
7171
72- [unreleased]: https://github.com/scottluskcis/outport /compare/v0.0.7...HEAD
73- [0.0.7]: https://github.com/scottluskcis/outport /compare/v0.0.6...v0.0.7
72+ [unreleased]: https://github.com/scottluskcis/export-toolkit /compare/v0.0.7...HEAD
73+ [0.0.7]: https://github.com/scottluskcis/export-toolkit /compare/v0.0.6...v0.0.7
7474```
7575
7676### 4. Commit Changelog
@@ -118,7 +118,7 @@ This pushes:
118118### 3. Create GitHub Release
119119
1201201 . ** Navigate to Releases** :
121- - Go to: https://github.com/scottluskcis/outport /releases/new
121+ - Go to: https://github.com/scottluskcis/export-toolkit /releases/new
122122
1231232 . ** Select the Tag** :
124124 - Choose the tag you just created (e.g., ` v0.0.7 ` )
@@ -137,7 +137,7 @@ This pushes:
137137### 4. Monitor Workflow
138138
1391391 . ** Watch the GitHub Action** :
140- - Go to: https://github.com/scottluskcis/outport /actions
140+ - Go to: https://github.com/scottluskcis/export-toolkit /actions
141141 - Look for "Publish to npm" workflow
142142 - Ensure it completes successfully
143143
@@ -152,29 +152,29 @@ After the workflow completes:
1521521 . ** Check npm Registry** :
153153
154154 ``` bash
155- npm view @scottluskcis/outport
155+ npm view @scottluskcis/export-toolkit
156156 ```
157157
158158 Should show the new version.
159159
1601602 . ** Visit npm Package Page** :
161- - Go to: https://www.npmjs.com/package/@scottluskcis/outport
161+ - Go to: https://www.npmjs.com/package/@scottluskcis/export-toolkit
162162 - Verify the new version is listed
163163 - Check for the provenance badge (🔒 verified)
164164
1651653 . ** Test Installation** :
166166
167167 ``` bash
168- npm install @scottluskcis/outport @latest
168+ npm install @scottluskcis/export-toolkit @latest
169169 ```
170170
171171 Or in a test project:
172172
173173 ``` bash
174174 mkdir test-install && cd test-install
175175 npm init -y
176- npm install @scottluskcis/outport
177- node -e " console.log(require('@scottluskcis/outport '))"
176+ npm install @scottluskcis/export-toolkit
177+ node -e " console.log(require('@scottluskcis/export-toolkit '))"
178178 ```
179179
180180## Post-Release
@@ -184,7 +184,7 @@ After the workflow completes:
184184Check what was actually published:
185185
186186``` bash
187- npm pack @scottluskcis/outport @latest --dry-run
187+ npm pack @scottluskcis/export-toolkit @latest --dry-run
188188```
189189
190190This shows the files included in the published package.
@@ -260,7 +260,7 @@ Increment when you make **backward-compatible bug fixes**:
260260
2612611 . ** Authentication Error** :
262262 - Verify ` NPM_TOKEN ` secret is set correctly
263- - Ensure token has "Read and write" permissions for ` @scottluskcis/outport `
263+ - Ensure token has "Read and write" permissions for ` @scottluskcis/export-toolkit `
264264 - Check token hasn't expired
265265
2662662 . ** Version Already Published** :
@@ -281,7 +281,7 @@ Increment when you make **backward-compatible bug fixes**:
281281
282282``` bash
283283# Unpublish the incorrect version (use sparingly!)
284- npm unpublish @scottluskcis/outport @X.Y.Z
284+ npm unpublish @scottluskcis/export-toolkit @X.Y.Z
285285
286286# Publish the correct version
287287npm version patch
@@ -308,7 +308,7 @@ git push && git push --tags
308308
3093092 . ** Deprecate the broken version** :
310310 ``` bash
311- npm deprecate @scottluskcis/outport @X.Y.Z " Critical bug, please upgrade to X.Y.Z+1"
311+ npm deprecate @scottluskcis/export-toolkit @X.Y.Z " Critical bug, please upgrade to X.Y.Z+1"
312312 ```
313313
314314## Emergency Contacts
@@ -323,21 +323,21 @@ git push && git push --tags
323323npm pack --dry-run
324324
325325# View package info on npm
326- npm view @scottluskcis/outport
326+ npm view @scottluskcis/export-toolkit
327327
328328# View specific version
329- npm view @scottluskcis/outport @X.Y.Z
329+ npm view @scottluskcis/export-toolkit @X.Y.Z
330330
331331# List all published versions
332- npm view @scottluskcis/outport versions
332+ npm view @scottluskcis/export-toolkit versions
333333
334334# Check latest version
335- npm view @scottluskcis/outport version
335+ npm view @scottluskcis/export-toolkit version
336336
337337# Test package in a temporary directory
338338mkdir /tmp/test-outport && cd /tmp/test-outport
339339npm init -y
340- npm install @scottluskcis/outport
340+ npm install @scottluskcis/export-toolkit
341341```
342342
343343## Release Frequency
0 commit comments