https://github.com/christianmurphy/lerna-webjar
Automate deploying npm packages managed by lerna to webjars.org
https://github.com/christianmurphy/lerna-webjar
lerna release-automation webjars
Last synced: 6 months ago
JSON representation
Automate deploying npm packages managed by lerna to webjars.org
- Host: GitHub
- URL: https://github.com/christianmurphy/lerna-webjar
- Owner: ChristianMurphy
- License: mit
- Created: 2018-10-17T19:37:42.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2022-06-24T23:24:46.000Z (over 3 years ago)
- Last Synced: 2025-03-13T01:17:48.075Z (7 months ago)
- Topics: lerna, release-automation, webjars
- Language: JavaScript
- Size: 625 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lerna-webjar
[](https://www.npmjs.com/package/lerna-webjar)
Automate deploying npm packages managed by lerna to webjars.org
:notebook: this relies on the package being released to npm before the webjar release is started.
## Quick usage
```sh
npx lerna-webjar
```## Installation
```sh
# with npm
npm install --save-dev lerna lerna-webjar# or with yarn
yarn add --dev lerna lerna-webjar
```## Usage
_in package.json_
```diff
{
"scripts": {
+ "publish-webjar": "lerna-webjar"
}
}
```then from a terminal
```sh
# with npm
npm run publish-webjar# with yarn
yarn publish-webjar
```