@zettelyay/extension-build-tools
v1.0.5
Published
Zettel: Extension build helper tools
Readme
Zettel: Extension build helper tools
Build and helper tools for extension development.
Installation
$ npm install --save-dev @zettelyay/extension-build-toolsUsage
This package provides shell command zettel-ebt executable binary.
You can use it to speed up a couple of tasks while developing Zettel extensions.
See help:
$ zettel-ebt help # / hUpgrade Zettel's official dependencies:
$ zettel-ebt upgradeVersion extension's manifest:
$ zettel-ebt version patch # / minor / majorPack and zip extension's files:
$ zettel-ebt packSee build tools version:
$ zettel-ebt version # / vConfiguration
You may provide the following configuration parameters either as the CLI command flags or options in the config file; which is either .zettelebtrc, .zettelebtrc.json, .zettelebtrc.js, .zettelebtrc.yml, or .zettelebtrc.yaml.
| RC file property path | Command-line flag | Default | Description |
|---|---|---|---|
| paths.root | -r, --root-path | "." | Project root relative path, contains package.json file
| paths.public | -p, --public-path | "public" | Public folder relative path to root, contains manifest.jsonc file
| paths.src | -s, --src-path | "src" | Source folder relative path to root, contains extension-function.js file
| paths.out | -o, --out-path | "out" | Dist folder relative path to root, to place the packed content
Development
Clone the repository locally:
$ git clone https://github.com/zettelyay/extension-build-tools.gitInstall the dependencies:
$ cd extension-build-tools
$ npm installIt's recommended to use VS Code to develop this project. You need to have Prettier extension to be installed on your IDE.
Publication
Publish a new version of the NPM package:
- Push all the changes. The workspace needs to be cleaned.
- Make sure you're on
masterbranch.
$ npm version patch # / minor / major / any other valid semantic versionMisc
Check for all the updates available on the dependencies:
$ npm run updates.checkUpgrade all the dependencies to their very latest versions:
$ npm run updates.installView GIT history visualized:
$ npm run gourceYou probably need to install
gourcelocally first. See this link.
Summarize the size of the code base in lines of code:
$ npm run statusCopyright: Zettel, 2020-23
