npm-update-package 4.0.10-alpha.1 → 4.0.10-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.json +2 -2
- package/dist/src/bin/npm-update-package.js +1 -1
- package/dist/src/github/createOctokit.js +1 -1
- package/dist/src/github/pull-request/creator/createFooter.js +1 -1
- package/dist/src/github/pull-request/metadata/createPullRequestMetadata.js +1 -1
- package/dist/src/options/createOptions.js +1 -1
- package/package.json +2 -2
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-update-package",
|
|
3
|
-
"version": "4.0.10-alpha.
|
|
3
|
+
"version": "4.0.10-alpha.3",
|
|
4
4
|
"description": "CLI tool for creating pull requests to update npm packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"prepublishOnly": "npm-run-all lint test build",
|
|
12
12
|
"test": "glob -c 'tsx --test' 'src/**/*.test.ts'"
|
|
13
13
|
},
|
|
14
|
-
"bin": "dist/bin/npm-update-package.js",
|
|
14
|
+
"bin": "dist/src/bin/npm-update-package.js",
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20"
|
|
17
17
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Octokit } from '@octokit/rest';
|
|
2
|
-
import pkg from '../../package.json'
|
|
2
|
+
import pkg from '../../package.json';
|
|
3
3
|
export const createOctokit = ({ host, token }) => {
|
|
4
4
|
const userAgent = `${pkg.name}/${pkg.version}`;
|
|
5
5
|
if (token === undefined) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { program } from 'commander';
|
|
2
|
-
import pkg from '../../package.json'
|
|
2
|
+
import pkg from '../../package.json';
|
|
3
3
|
import { isOptions } from './Options.js';
|
|
4
4
|
import { toCommanderOption } from './toCommanderOption.js';
|
|
5
5
|
export const createOptions = (cliOptions) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "npm-update-package",
|
|
3
|
-
"version": "4.0.10-alpha.
|
|
3
|
+
"version": "4.0.10-alpha.3",
|
|
4
4
|
"description": "CLI tool for creating pull requests to update npm packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"prepublishOnly": "npm-run-all lint test build",
|
|
12
12
|
"test": "glob -c 'tsx --test' 'src/**/*.test.ts'"
|
|
13
13
|
},
|
|
14
|
-
"bin": "dist/bin/npm-update-package.js",
|
|
14
|
+
"bin": "dist/src/bin/npm-update-package.js",
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20"
|
|
17
17
|
},
|