@pagopa/dx-cli 0.8.1 → 0.8.2
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/bin/index.js +4 -4
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -280,7 +280,7 @@ async function replacePMOccurrences() {
|
|
|
280
280
|
"https://yarnpkg.com/",
|
|
281
281
|
"https://classic.yarnpkg.com/",
|
|
282
282
|
/\b(yarn workspace|npm -(\b-workspace\b|\bw\b)) (\S+)\b/g,
|
|
283
|
-
/\b(yarn workspace|npm -(\b-workspace\b|\bw\b))
|
|
283
|
+
/\b(yarn workspace|npm -(\b-workspace\b|\bw\b))\b/g,
|
|
284
284
|
/\b(yarn install --immutable|npm ci)\b/g,
|
|
285
285
|
/\b(yarn -q dlx|npx)\b/g,
|
|
286
286
|
/\b(Yarn|npm)\b/gi
|
|
@@ -289,7 +289,7 @@ async function replacePMOccurrences() {
|
|
|
289
289
|
to: [
|
|
290
290
|
"https://pnpm.io/",
|
|
291
291
|
"https://pnpm.io/",
|
|
292
|
-
"pnpm --filter $
|
|
292
|
+
"pnpm --filter $3",
|
|
293
293
|
"pnpm --filter <package-selector>",
|
|
294
294
|
"pnpm install --frozen-lockfile",
|
|
295
295
|
"pnpm dlx",
|
|
@@ -763,7 +763,7 @@ import { Command as Command5 } from "commander";
|
|
|
763
763
|
import { getLogger as getLogger7 } from "@logtape/logtape";
|
|
764
764
|
function printVersion() {
|
|
765
765
|
const logger2 = getLogger7(["dx-cli", "version"]);
|
|
766
|
-
logger2.info(`dx CLI version: ${"0.8.
|
|
766
|
+
logger2.info(`dx CLI version: ${"0.8.2"}`);
|
|
767
767
|
}
|
|
768
768
|
|
|
769
769
|
// src/adapters/commander/commands/version.ts
|
|
@@ -772,7 +772,7 @@ var makeVersionCommand = () => new Command5().name("version").alias("v").action(
|
|
|
772
772
|
// src/adapters/commander/index.ts
|
|
773
773
|
var makeCli = (deps2, config2, cliDeps) => {
|
|
774
774
|
const program2 = new Command6();
|
|
775
|
-
program2.name("dx").description("The CLI for DX-Platform").version("0.8.
|
|
775
|
+
program2.name("dx").description("The CLI for DX-Platform").version("0.8.2");
|
|
776
776
|
program2.addCommand(makeDoctorCommand(deps2, config2));
|
|
777
777
|
program2.addCommand(makeCodemodCommand(cliDeps));
|
|
778
778
|
if (process.env.ENABLE_INIT_COMMAND) {
|