@naturalcycles/dev-lib 13.44.11 → 13.45.1
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/cfg/tsconfig.json +2 -2
- package/dist/bin/upnc.d.ts +2 -0
- package/dist/bin/upnc.js +9 -0
- package/package.json +3 -1
- package/scripts/tsconfig.json +2 -2
package/cfg/tsconfig.json
CHANGED
package/dist/bin/upnc.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
const nodejs_lib_1 = require("@naturalcycles/nodejs-lib");
|
|
5
|
+
(0, nodejs_lib_1.runScript)(async () => {
|
|
6
|
+
(0, nodejs_lib_1.execVoidCommandSync)('yarn', ['upgrade', '--pattern', `@naturalcycles`]);
|
|
7
|
+
(0, nodejs_lib_1.execVoidCommandSync)('yarn-deduplicate');
|
|
8
|
+
(0, nodejs_lib_1.execVoidCommandSync)('yarn');
|
|
9
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/dev-lib",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.45.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"prepare": "husky install",
|
|
6
6
|
"tsn-debug": "tsn testScript.ts",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"lint-all": "tsn ./src/bin/lint-all.ts",
|
|
26
26
|
"eslint-all": "tsn ./src/bin/eslint-all.ts",
|
|
27
27
|
"up": "tsn ./src/bin/up.ts",
|
|
28
|
+
"upnc": "tsn ./src/bin/upnc.ts",
|
|
28
29
|
"eslint-print-config": "eslint --print-config src/index.ts > tmp/eslint.config.json",
|
|
29
30
|
"update-from-dev-lib": "tsn ./src/bin/update-from-dev-lib.ts"
|
|
30
31
|
},
|
|
@@ -95,6 +96,7 @@
|
|
|
95
96
|
"tsc-prod": "dist/bin/tsc-prod.js",
|
|
96
97
|
"tsc-scripts": "dist/bin/tsc-scripts.js",
|
|
97
98
|
"up": "dist/bin/up.js",
|
|
99
|
+
"upnc": "dist/bin/upnc.js",
|
|
98
100
|
"update-from-dev-lib": "dist/bin/update-from-dev-lib.js"
|
|
99
101
|
},
|
|
100
102
|
"engines": {
|