Skip to content

add npm publish script #15

Open
Open
@micahstubbs

Description

@micahstubbs

This should make it easier for us to publish updates to npm

here's a pseudocode shell script:

# bump version in package.json, following semver
# do this with sed or some similiar 
# unix text editing scripting
VERSION=v0.12.2
git add package.json
git status
git commit -m "bump version to $VERSION"
git push

git tag $VERSION
git push origin --tags

npm publish

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions