@leverege/build-tools 2.93.0-beta.3 → 2.93.0-beta.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": "@leverege/build-tools",
3
- "version": "2.93.0-beta.3",
3
+ "version": "2.93.0-beta.5",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -50,7 +50,7 @@
50
50
  "npm-link": "src/npm-link.sh",
51
51
  "npm-unlink": "src/npm-unlink.sh",
52
52
  "overwhelm": "src/overwhelm.mjs",
53
- "package-artifact": "src/package-artifact/Command.mjs",
53
+ "package-artifact": "src/package-artifact/command.mjs",
54
54
  "pkgck": "src/pkgck.sh",
55
55
  "pkglint": "src/pkglint.sh",
56
56
  "prepack": "src/prepack.mjs",
@@ -1,7 +1,9 @@
1
+ #!/usr/bin/env node
2
+
1
3
  import { warning } from '../Utils.mjs'
2
4
 
3
5
  import { getArtifactEntriesSchema, flattenArtifactEntriesSchema } from './Utils.mjs'
4
- import { GenericArtifactEntryPackager } from './Packager.mjs'
6
+ import { GenericArtifactPackager } from './Packager.mjs'
5
7
 
6
8
  async function main() {
7
9
 
@@ -28,7 +30,7 @@ async function main() {
28
30
  let packager
29
31
  switch ( artifactSchema.type ) {
30
32
  case 'generic':
31
- packager = new GenericArtifactEntryPackager( artifactSchema )
33
+ packager = new GenericArtifactPackager( artifactSchema )
32
34
  break
33
35
  default:
34
36
  warning( `Unsupported artifact type "${artifactSchema.type}"` )