You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,9 @@ Personal template for creating TypeScript libraries.
6
6
7
7
*Prequisites: Node.js, Git, and the GitHub CLI (authed). AI agents like [Claude Code](https://www.anthropic.com/claude-code) should be able to complete all these steps.*
8
8
9
-
1. Run the setup script: `node setup.js [--private]`
9
+
1. Create a new repository from this template: `gh repo create <name> --template domdomegg/typescript-library-template --clone --public` (or `--private`)
10
+
2. Run the setup script: `node setup.js [--private]`
10
11
-`--private` will prevent the package being published to NPM. Usually packages should be public and will be published, but if you're unsure ask the user.
11
-
2. Complete the TODOs in `package.json` and `README.md` (don't change anything else!)
12
-
3. Run `npm install`, then check everything works with `npm run test && npm run build && npm run lint`
13
-
4. Commit the changes with the commit message 'Initialization from template'
12
+
3. Complete the TODOs in `package.json` and `README.md` (don't change anything else!)
13
+
4. Run `npm install`, then check everything works with `npm run test && npm run build && npm run lint`
14
+
5. Commit the changes with the commit message 'Initialization from template'
0 commit comments