@aquicore/aq-workflow
v0.0.2
Published
### get up and running ๐โ 1. click the 'use this template' button in github, name appropriately, clone locally. 2. run: ``` node install.js $(basename `git rev-parse --show-toplevel`) && npm i && npm start ``` (i is shorthand for install)
Downloads
13
Readme
aq-workflow
get up and running ๐โ
- click the 'use this template' button in github, name appropriately, clone locally.
- run:
node install.js $(basename `git rev-parse --show-toplevel`) && npm i && npm start
(i is shorthand for install)
- write your package code in
src/js
, tests go insrc/js/test
. Export public interfaces and classes fromsrc/js/index.ts
(this file acts as the main 'entry point' to the package and gives you full control over what is/is not exported publicly) - commit your desired changes, code review if necessary
- publish the package by running
npm run release
. This will:- compile and bundle typescript
- runs tests
- version bump package.json and tag the commit with semver
- ensure you publish from master with no uncommitted changes
- publish to npm and create a github release
(you should be logged in to the npm cli as
aq-system
, usenpm whoami
to check)
other
if you find a ๐ bug in the template code, please fix it upstream! then everyone can share the goodness around.