@knapsack-pro/core
@knapsack-pro/core
is JS npm package with core features for Knapsack Pro API.
Learn how to run your tests faster with optimal test suite parallelisation using Knapsack Pro.
This package is the dependency of Knapsack Pro clients in JavaScript.
Table of Contents
FAQ
FAQ for Knapsack Pro JavaScript clients can be found here.
Development
Requirements
You can use NVM to manage Node version in development.
>= Node 16.15.1 LTS
Setup
Follow below steps or use bin/setup_development
script to take care of steps 1-3.
-
Install dependencies:
$ npm install
-
Compile TypeScript code to
lib
directory by running:$ npm start
-
Register
@knapsack-pro/core
package globally in your local system. This way we will be able to develop other npm packages dependent on it:$ npm link
-
Set up your IDE:
-
Visual Studio Code
-
Install the following plugins:
-
Go to
File > Preferences > Settings > Text Editor > Formatting
Turn on
Format On Save
checkbox.
-
From now on, every change in code base will be automatically formatted by Prettier. ESLint shows errors and warnings in VSCode.
-
-
Write some code.
Publishing
-
Sign in to npm registry with command:
$ npm adduser
-
Before releasing a new version of package please update
CHANGELOG.md
with github_changelog_generator:$ gem install github_changelog_generator # generate CHANGELOG.md $ github_changelog_generator --user KnapsackPro --project knapsack-pro-core-js $ git commit -am "Update CHANGELOG.md" $ git push origin master
-
If you have added new files to the repository and they should be part of the released npm package then please ensure they are included in
files
array inpackage.json
. -
If you have changed any headers in
README.md
please refresh table of contents with:$ npm run doctoc
-
Compile project:
$ npm run build
-
In order to bump version of the package run below command. It will also create a version commit and tag for the release:
# bump patch version 0.0.x $ npm version patch # bump minor version 0.x.0 $ npm version minor
-
Push to git repository created commit and tag:
$ git push origin master --tags
-
Now when git tag is on Github you can update
CHANGELOG.md
again.$ github_changelog_generator --user KnapsackPro --project knapsack-pro-core-js $ git commit -am "Update CHANGELOG.md" $ git push origin master
-
Now you can publish package to npm registry:
$ npm publish