@gravity-ui/app-builder 0.6.6 → 0.6.7

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,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.7](https://github.com/gravity-ui/app-builder/compare/v0.6.6...v0.6.7) (2023-09-06)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **build-lib:** replace babel-plugin-lodash with babel-plugin-import ([#70](https://github.com/gravity-ui/app-builder/issues/70)) ([e193fb7](https://github.com/gravity-ui/app-builder/commit/e193fb71f6707dbaf2d09062cfb1a0eb0ba46643))
9
+
3
10
  ## [0.6.6](https://github.com/gravity-ui/app-builder/compare/v0.6.5...v0.6.6) (2023-09-04)
4
11
 
5
12
 
@@ -192,7 +192,14 @@ function buildLibrary(config) {
192
192
  },
193
193
  },
194
194
  ],
195
- require.resolve('babel-plugin-lodash'),
195
+ [
196
+ require.resolve('babel-plugin-import'),
197
+ {
198
+ libraryName: 'lodash',
199
+ libraryDirectory: '',
200
+ camel2DashComponentName: false,
201
+ },
202
+ ],
196
203
  require.resolve('./babel-plugin-replace-paths'),
197
204
  ],
198
205
  sourceMaps: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/app-builder",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "description": "Develop and build your React client-server projects, powered by typescript and webpack",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",