Skip to content

Commit 0be441d

Browse files
authoredApr 20, 2023
Update to version 2 (#84)
1 parent a102974 commit 0be441d

File tree

8 files changed

+157
-163
lines changed

8 files changed

+157
-163
lines changed
 

‎.github/workflows/ci-cd.yml

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
node-version:
2828
- 16
2929
- 18
30+
- 20
3031

3132
steps:
3233
- name: Checkout source
@@ -99,6 +100,7 @@ jobs:
99100
node-version:
100101
- 16
101102
- 18
103+
- 20
102104

103105
services:
104106
verdaccio:

‎.vscode/launch.json

-27
This file was deleted.

‎.vscode/tasks.json

-36
This file was deleted.

‎CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# Change Log
1+
# Change Log (Archived)
2+
3+
See [releases](https://github.com/JS-DevTools/npm-publish/releases) for current change log.
4+
5+
---
26

37
All notable changes will be documented in this file.
48
NPM Publish adheres to [Semantic Versioning](http://semver.org/).

‎README.md

+147-96
Large diffs are not rendered by default.

‎bin/npm-publish.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ const { version } = require("../package.json");
77
const { main } = require("../lib/cli/index.js");
88

99
main(process.argv.slice(2), version).catch((error) => {
10-
console.log(error);
10+
console.error(error);
1111
process.exitCode = 1;
1212
});

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@jsdevtools/npm-publish",
33
"description": "Fast, easy publishing to NPM",
4-
"version": "1.4.3",
4+
"version": "2.0.0",
55
"keywords": [
66
"github-action",
77
"npm",

‎src/cli/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Usage:
99
Arguments:
1010
1111
package The path to the package to publish.
12-
May be a directory or package.json file.
12+
May be a directory, package.json, or .tgz file.
1313
Defaults to the package in the current directory.
1414
1515
Options:

0 commit comments

Comments
 (0)
Failed to load comments.