qcobjects-cli 2.5.131-beta → 2.5.132-beta

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.5.131-beta
1
+ 2.5.132-beta
package/build-esbuild.js CHANGED
@@ -101,9 +101,13 @@ const copyDir = async (source, dest, exclude) => {
101
101
  const ignorePlugin = {
102
102
  name: 'ignore-packages',
103
103
  setup(build) {
104
- // Tell esbuild to ignore these packages
104
+ // Handle both static and dynamic imports of these packages
105
105
  build.onResolve({ filter: /^(qcobjects-sdk|qcobjects)$/ }, args => {
106
- return { external: true }
106
+ return {
107
+ external: true,
108
+ // Preserve the path for dynamic imports
109
+ path: args.path
110
+ }
107
111
  })
108
112
  }
109
113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects-cli",
3
- "version": "2.5.131-beta",
3
+ "version": "2.5.132-beta",
4
4
  "description": "qcobjects cli command line tool",
5
5
  "main": "public/cjs/index.cjs",
6
6
  "module": "public/esm/index.mjs",