Skip to content

Commit

Permalink
Release v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Oct 2, 2023
1 parent aed8bf2 commit e3bfc67
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -17,7 +17,7 @@ groups (arrays) of commands to execute.
"compile-ts": "tsc",
"compile-less": "lessc src/web-app/style.less build/web-app/style.css",
"graphics": "copy-folder src/graphics build/my-app/graphics",
"compile-html": "replacer src/web-app --ext=.html --pkg build/my-app",
"compile-html": "replacer src/web-app --ext=.html build/my-app",
"pretest": "npm run clean && npm run compile-ts && npm run compile-less && npm run graphics && npm run compile-html",
"test": "mocha spec"
},
Expand All @@ -32,7 +32,7 @@ groups (arrays) of commands to execute.
"tsc",
"lessc src/web-app/style.less build/web-app/style.css",
"copy-folder src/graphics build/my-app/graphics",
"replacer src/web-app --ext=.html --pkg build/my-app"
"replacer src/web-app --ext=.html build/my-app"
]
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion bin/cli.js
Expand Up @@ -13,7 +13,7 @@
// "tsc",
// "lessc src/web-app/style.less build/web-app/style.css",
// "copy-folder src/graphics build/my-app/graphics",
// "replacer src/web-app --ext=.html --pkg build/my-app"
// "replacer src/web-app --ext=.html build/my-app"
// ]
// },
// "scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dist/run-scripts.d.ts
@@ -1,4 +1,4 @@
//! run-scripts-util v1.2.2 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License
//! run-scripts-util v1.2.3 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License

export type Settings = {
only: number | null;
Expand Down
2 changes: 1 addition & 1 deletion dist/run-scripts.js
@@ -1,4 +1,4 @@
//! run-scripts-util v1.2.2 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License
//! run-scripts-util v1.2.3 ~~ https://github.com/center-key/run-scripts-util ~~ MIT License

import { spawn, spawnSync } from 'node:child_process';
import chalk from 'chalk';
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "run-scripts-util",
"version": "1.2.2",
"version": "1.2.3",
"description": "Organize npm scripts into named groups of easy to manage commands (CLI tool designed for use in npm scripts)",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -117,7 +117,7 @@
},
"devDependencies": {
"@types/fancy-log": "~2.0",
"@types/node": "~20.6",
"@types/node": "~20.8",
"@typescript-eslint/eslint-plugin": "~6.7",
"@typescript-eslint/parser": "~6.7",
"add-dist-header": "~1.3",
Expand Down
2 changes: 1 addition & 1 deletion run-scripts.ts
Expand Up @@ -40,7 +40,7 @@ const runScripts = {
// "tsc",
// "lessc src/web-app/style.less build/web-app/style.css",
// "copy-folder src/graphics build/my-app/graphics",
// "replacer src/web-app --ext=.html --pkg build/my-app"
// "replacer src/web-app --ext=.html build/my-app"
// ]
// },
// "scripts": {
Expand Down
2 changes: 1 addition & 1 deletion spec/fixtures/target/a/cli.js
Expand Up @@ -13,7 +13,7 @@
// "tsc",
// "lessc src/web-app/style.less build/web-app/style.css",
// "copy-folder src/graphics build/my-app/graphics",
// "replacer src/web-app --ext=.html --pkg build/my-app"
// "replacer src/web-app --ext=.html build/my-app"
// ]
// },
// "scripts": {
Expand Down
2 changes: 1 addition & 1 deletion spec/fixtures/target/a/cli2.js
Expand Up @@ -13,7 +13,7 @@
// "tsc",
// "lessc src/web-app/style.less build/web-app/style.css",
// "copy-folder src/graphics build/my-app/graphics",
// "replacer src/web-app --ext=.html --pkg build/my-app"
// "replacer src/web-app --ext=.html build/my-app"
// ]
// },
// "scripts": {
Expand Down

0 comments on commit e3bfc67

Please sign in to comment.