@leverege/build-tools 2.93.0-beta.4 → 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.4",
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": {
@@ -3,7 +3,7 @@
3
3
  import { warning } from '../Utils.mjs'
4
4
 
5
5
  import { getArtifactEntriesSchema, flattenArtifactEntriesSchema } from './Utils.mjs'
6
- import { GenericArtifactEntryPackager } from './Packager.mjs'
6
+ import { GenericArtifactPackager } from './Packager.mjs'
7
7
 
8
8
  async function main() {
9
9
 
@@ -30,7 +30,7 @@ async function main() {
30
30
  let packager
31
31
  switch ( artifactSchema.type ) {
32
32
  case 'generic':
33
- packager = new GenericArtifactEntryPackager( artifactSchema )
33
+ packager = new GenericArtifactPackager( artifactSchema )
34
34
  break
35
35
  default:
36
36
  warning( `Unsupported artifact type "${artifactSchema.type}"` )