Skip to content

Commit e3bfc67

Browse files
committed
Release v1.2.3
1 parent aed8bf2 commit e3bfc67

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ groups (arrays) of commands to execute.
1717
"compile-ts": "tsc",
1818
"compile-less": "lessc src/web-app/style.less build/web-app/style.css",
1919
"graphics": "copy-folder src/graphics build/my-app/graphics",
20-
"compile-html": "replacer src/web-app --ext=.html --pkg build/my-app",
20+
"compile-html": "replacer src/web-app --ext=.html build/my-app",
2121
"pretest": "npm run clean && npm run compile-ts && npm run compile-less && npm run graphics && npm run compile-html",
2222
"test": "mocha spec"
2323
},
@@ -32,7 +32,7 @@ groups (arrays) of commands to execute.
3232
"tsc",
3333
"lessc src/web-app/style.less build/web-app/style.css",
3434
"copy-folder src/graphics build/my-app/graphics",
35-
"replacer src/web-app --ext=.html --pkg build/my-app"
35+
"replacer src/web-app --ext=.html build/my-app"
3636
]
3737
},
3838
"scripts": {

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// "tsc",
1414
// "lessc src/web-app/style.less build/web-app/style.css",
1515
// "copy-folder src/graphics build/my-app/graphics",
16-
// "replacer src/web-app --ext=.html --pkg build/my-app"
16+
// "replacer src/web-app --ext=.html build/my-app"
1717
// ]
1818
// },
1919
// "scripts": {

dist/run-scripts.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! run-scripts-util v1.2.2 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License
1+
//! run-scripts-util v1.2.3 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License
22

33
export type Settings = {
44
only: number | null;

dist/run-scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! run-scripts-util v1.2.2 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License
1+
//! run-scripts-util v1.2.3 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License
22

33
import { spawn, spawnSync } from 'node:child_process';
44
import chalk from 'chalk';

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "run-scripts-util",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Organize npm scripts into named groups of easy to manage commands (CLI tool designed for use in npm scripts)",
55
"license": "MIT",
66
"type": "module",
@@ -117,7 +117,7 @@
117117
},
118118
"devDependencies": {
119119
"@types/fancy-log": "~2.0",
120-
"@types/node": "~20.6",
120+
"@types/node": "~20.8",
121121
"@typescript-eslint/eslint-plugin": "~6.7",
122122
"@typescript-eslint/parser": "~6.7",
123123
"add-dist-header": "~1.3",

run-scripts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const runScripts = {
4040
// "tsc",
4141
// "lessc src/web-app/style.less build/web-app/style.css",
4242
// "copy-folder src/graphics build/my-app/graphics",
43-
// "replacer src/web-app --ext=.html --pkg build/my-app"
43+
// "replacer src/web-app --ext=.html build/my-app"
4444
// ]
4545
// },
4646
// "scripts": {

spec/fixtures/target/a/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// "tsc",
1414
// "lessc src/web-app/style.less build/web-app/style.css",
1515
// "copy-folder src/graphics build/my-app/graphics",
16-
// "replacer src/web-app --ext=.html --pkg build/my-app"
16+
// "replacer src/web-app --ext=.html build/my-app"
1717
// ]
1818
// },
1919
// "scripts": {

spec/fixtures/target/a/cli2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// "tsc",
1414
// "lessc src/web-app/style.less build/web-app/style.css",
1515
// "copy-folder src/graphics build/my-app/graphics",
16-
// "replacer src/web-app --ext=.html --pkg build/my-app"
16+
// "replacer src/web-app --ext=.html build/my-app"
1717
// ]
1818
// },
1919
// "scripts": {

0 commit comments

Comments
 (0)