@friendventure/npm-example
v0.0.1
Published
Example files for npm publish on npmjs.com
Readme
npm-example
Example files for npm publish on npmjs.com.
Table of contents
Install
npm i @friendventure/npm-exampleUsage
var Example = require("@friendventure/npm-example");
Example.Example("Bob");
// or
import { Example } from "@friendventure/npm-example";
Example("Bob");Publish new version
# 1.) Update changelog.md
# 2.) Update version
# 1.0.0 -> 1.0.1
npm version patch
# 1.0.0 -> 1.1.0
npm version minor
# 1.0.0 -> 2.0.0
npm version major
# 3.) Publish
npm publishCredits
- https://itnext.io/step-by-step-building-and-publishing-an-npm-typescript-package-44fe7164964c
- https://stackoverflow.com/questions/54775558/how-to-run-a-test-in-gitlab-for-nodejs-application/54775747#answer-54775747
