@adobe/helix-deploy 5.0.4 → 5.0.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [5.0.5](https://github.com/adobe/helix-deploy/compare/v5.0.4...v5.0.5) (2022-01-03)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * use fixed import conditions ([#350](https://github.com/adobe/helix-deploy/issues/350)) ([28464d2](https://github.com/adobe/helix-deploy/commit/28464d245229236ff15bad6e20278ce5ebd8594b))
7
+
1
8
  ## [5.0.4](https://github.com/adobe/helix-deploy/compare/v5.0.3...v5.0.4) (2022-01-03)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-deploy",
3
- "version": "5.0.4",
3
+ "version": "5.0.5",
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",
@@ -74,6 +74,8 @@ export default class WebpackBundler extends BaseBundler {
74
74
  // the main.js is imported in the universal adapter and is _the_ action entry point
75
75
  './main.js': cfg.file,
76
76
  },
77
+ // use fixed conditions to omit the `development` condition.
78
+ conditionNames: ['node', 'require'],
77
79
  },
78
80
  node: {
79
81
  __dirname: true,