-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update settings for publishing to npm (#4)
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# starter-code-cli | ||
CLI tool for generating starter code. | ||
|
||
Publishing steps: | ||
1. Sign into the uwblueprint-infra account using `npm login` | ||
2. Run `npm publish --dry-run` to see what files would be published | ||
3. To actually publish to npm, run `npm publish --access public` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env node | ||
import cli from "./cli"; | ||
|
||
import Scrubber from "./scrubber/scrubber"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"name": "starter-code-cli", | ||
"name": "@uwblueprint/create-bp-app", | ||
"version": "1.0.0", | ||
"description": "Starter code generation CLI tool.", | ||
"main": "index.js", | ||
"bin": "bin/index.js", | ||
"repository": "[email protected]:uwblueprint/starter-code-cli.git", | ||
"author": "UW Blueprint Internal Tools", | ||
"license": "MIT", | ||
|
@@ -34,5 +35,6 @@ | |
"figlet": "^1.5.0", | ||
"inquirer": "^8.0.0", | ||
"yargs": "^16.2.0" | ||
} | ||
}, | ||
"files": ["bin/"] | ||
} |