JSPM

@nyce/eslint-config

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 116
  • Score
    100M100P100Q74299F
  • License MIT

Common configuration files used across projects.

Package Exports

  • @nyce/eslint-config
  • @nyce/eslint-config/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nyce/eslint-config) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

1. Install packages

This template uses PNPM instead of NPM. Compatibility with regular NPM is not guaranteed and may require some tweaking.

pnpm install

2. Set first version (0.0.0 -> 1.0.0)

git commit -m "Initial commit"
pnpm version major

3. Publish the first version of your package

pnpm publish

Testing changes locally

Run the pack command:

pnpm pack

This generates an tarball file (.tgz), installable in any (p)npm project

pnpm add ./nyce-software-ts-core-[VERSION].tgz

Publishing future versions

Important notice: A version number change and a push of commits is automatically triggered by the mentioned (p)npm commands. Please do not perform these actions manually.

Commit

Commit your changes, NOTE: do not mention/commit version numbers manually

git commit -m "DESCRIBE_YOUR_CHANGES_HERE"

Version

Run the version command, specify the type of the change (semantic versioning):

pnpm version [patch|minor|major]

Publish

Run the publish command:

pnpm publish