Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to version 2 #84

Merged
merged 7 commits into from
Apr 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
node-version:
- 16
- 18
- 20

steps:
- name: Checkout source
Expand Down Expand Up @@ -99,6 +100,7 @@ jobs:
node-version:
- 16
- 18
- 20

services:
verdaccio:
Expand Down
27 changes: 0 additions & 27 deletions .vscode/launch.json

This file was deleted.

36 changes: 0 additions & 36 deletions .vscode/tasks.json

This file was deleted.

6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
# Change Log (Archived)

See [releases](https://github.com/JS-DevTools/npm-publish/releases) for current change log.

---

All notable changes will be documented in this file.
NPM Publish adheres to [Semantic Versioning](http://semver.org/).
Expand Down
243 changes: 147 additions & 96 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/npm-publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ const { version } = require("../package.json");
const { main } = require("../lib/cli/index.js");

main(process.argv.slice(2), version).catch((error) => {
console.log(error);
console.error(error);
process.exitCode = 1;
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jsdevtools/npm-publish",
"description": "Fast, easy publishing to NPM",
"version": "1.4.3",
"version": "2.0.0",
"keywords": [
"github-action",
"npm",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Usage:
Arguments:
package The path to the package to publish.
May be a directory or package.json file.
May be a directory, package.json, or .tgz file.
Defaults to the package in the current directory.
Options:
Expand Down