Skip to content

Commit

Permalink
Update to version 2 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous committed Apr 20, 2023
1 parent a102974 commit 0be441d
Show file tree
Hide file tree
Showing 8 changed files with 157 additions and 163 deletions.
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

0 comments on commit 0be441d

Please sign in to comment.