@netspacejs/editor v1.1.1
Template: TypeScript Module

This is a clonable template repository for authoring a npm module with TypeScript. Out of the box, it:
- Provides minimally-viable
tsconfig.jsonsettings - Scaffolds a silly arithmetic module (
src/index.ts) - Scaffolds test suites for full test coverage (
test/index.ts) - Scaffolds a GitHub Action for Code Integration (CI) that:
- checks if compilation is successful
- runs the test suite(s)
- reports test coverage
- Generates type definitions (
types/*.d.ts) - Generates multiple distribution formats:
- ES Module (
dist/index.mjs) - CommonJS (
dist/index.js) - UMD (
dist/index.min.js)
- ES Module (
All configuration is accessible via the rollup.config.js and a few package.json keys:
name— the name of your modulemain— the destination file for your CommonJS buildmodule— the destination file for your ESM build (optional but recommended)unpkg— the destination file for your UMD build (optional for unpkg.com)umd:name— the UMD global name for your module (optional)
Setup
- Clone this template
- Replace all instances of
TODOwithin thelicenseandpackage.jsonfiles - Create CodeCov account (free for OSS)
- Copy the provided CodeCov token as the
CODECOV_TOKENrepository secret (for CI reporting) - Replace
src/index.tsandtest/index.tswith your own code! 🎉
Commands
build
Builds your module for distribution in multiple formats (ESM, CommonJS, and UMD).
$ npm run buildtest
Runs your test suite(s) (/tests/**) against your source code (/src/**).Doing so allows for accurate code coverage.
Note: Coverage is only collected and reported through the "CI" Github Action (
.github/workflows/ci.yml).
$ npm testPublishing
Important: Please finish Setup before continuing!
Once all TODO notes have been updated & your new module is ready to be shared, all that's left to do is decide its new version — AKA, do the changes consitute a patch, minor, or major release?
Once decided, you can run the following:
$ npm version <patch|minor|major> && git push origin master --tags && npm publish
# Example:
# npm version patch && git push origin master --tags && npm publishThis command sequence will:
- version your module, updating the
package.json"version" - create and push a
gittag (matching the new version) to your repository - build your module (via the
prepublishOnlyscript) - publish the module to the npm registry
License
MIT © Luke Edwards
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago