1.0.10 • Published 2 years ago

appid-auth-app v1.0.10

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

AppID-Auth-App

Custom appID authentication application for ISH web apps

How to publish

You must have an npm account with access to the @ish organization and must be logged in using npm adduser.

Checkout master branch and run git pull --ff-only

Reinstall dependencies: rm -rf node_modules && npm install

Bump package version using npm version with one of these arguments:

  • patch (does not break lint): Changes to project metadata, documentation or structure
  • minor (does not break lint): Loosen existing rules, add a new configuration or small dependencies update
  • major (might break lint): New rules, stricter rules or big dependencies update

Check if everything is OK and run git push --follow-tags

Publish using npm publish --access public

Local development

On the package project, create a symlink for the dependency project.

npm link

On the project were to use the local dependency to tell the application to use the local package instead, use the dependency name from the pakage.json file e.g. "appid-auth-app".

npm link appid-auth-app

Use npm unlink when you finished with the local development.