@travetto/pack 5.0.0-rc.3 → 5.0.0-rc.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/pack",
3
- "version": "5.0.0-rc.3",
3
+ "version": "5.0.0-rc.5",
4
4
  "description": "Code packing utilities",
5
5
  "keywords": [
6
6
  "travetto",
@@ -29,12 +29,12 @@
29
29
  "@rollup/plugin-json": "^6.1.0",
30
30
  "@rollup/plugin-node-resolve": "^15.2.3",
31
31
  "@rollup/plugin-terser": "^0.4.4",
32
- "@travetto/runtime": "^5.0.0-rc.3",
33
- "@travetto/terminal": "^5.0.0-rc.3",
32
+ "@travetto/runtime": "^5.0.0-rc.5",
33
+ "@travetto/terminal": "^5.0.0-rc.5",
34
34
  "rollup": "^4.18.0"
35
35
  },
36
36
  "peerDependencies": {
37
- "@travetto/cli": "^5.0.0-rc.3"
37
+ "@travetto/cli": "^5.0.0-rc.5"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "@travetto/cli": {
@@ -5,5 +5,5 @@ import { BasePackCommand } from './pack.base';
5
5
  /**
6
6
  * Standard pack support
7
7
  */
8
- @CliCommand({ addModule: true })
8
+ @CliCommand({ with: { module: true } })
9
9
  export class PackCommand extends BasePackCommand { }
@@ -13,7 +13,7 @@ const NODE_MAJOR = process.version.match(/\d+/)?.[0] ?? '22';
13
13
  /**
14
14
  * Standard docker support for pack
15
15
  */
16
- @CliCommand({ addModule: true })
16
+ @CliCommand({ with: { module: true } })
17
17
  export class PackDockerCommand extends BasePackCommand {
18
18
  @CliFlag({ desc: 'Docker Factory source', short: 'df', envVars: ['PACK_DOCKER_FACTORY'] })
19
19
  dockerFactory = '@travetto/pack/support/pack.dockerfile';
@@ -6,7 +6,7 @@ import { BasePackCommand, PackOperationShape } from './pack.base';
6
6
  /**
7
7
  * Standard zip support for pack
8
8
  */
9
- @CliCommand({ addModule: true })
9
+ @CliCommand({ with: { module: true } })
10
10
  export class PackZipCommand extends BasePackCommand {
11
11
 
12
12
  preMain(): void {