@adobe/helix-deploy 10.3.2 → 10.3.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [10.3.3](https://github.com/adobe/helix-deploy/compare/v10.3.2...v10.3.3) (2024-01-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add 'import' condidtion for package imports ([#656](https://github.com/adobe/helix-deploy/issues/656)) ([7c6fc41](https://github.com/adobe/helix-deploy/commit/7c6fc41c7ccd479e34daa2af4ff2e62d2a2b35be))
7
+
1
8
  ## [10.3.2](https://github.com/adobe/helix-deploy/compare/v10.3.1...v10.3.2) (2024-01-27)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "10.3.2",
3
+ "version": "10.3.3",
4
4
  "description": "Library and Commandline Tools to build and deploy OpenWhisk Actions",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/adobe/helix-deploy#readme",
@@ -80,7 +80,8 @@ export default class WebpackBundler extends BaseBundler {
80
80
  './main.js': cfg.file,
81
81
  },
82
82
  // use fixed conditions to omit the `development` condition.
83
- conditionNames: ['node', 'require'],
83
+ // see: https://webpack.js.org/guides/package-exports/#conditions
84
+ conditionNames: ['node', 'require', 'import'],
84
85
  },
85
86
  node: {
86
87
  __dirname: true,