@gravity-ui/app-builder 0.1.0 → 0.1.1

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.1.1](https://github.com/gravity-ui/app-builder/compare/v0.1.0...v0.1.1) (2023-03-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * correctly load dayjs locales ([#6](https://github.com/gravity-ui/app-builder/issues/6)) ([412dfd6](https://github.com/gravity-ui/app-builder/commit/412dfd6d89dccbda9652a96baa36491db2e6b4dc))
9
+
3
10
  ## [0.1.0](https://github.com/gravity-ui/app-builder/compare/v0.0.2...v0.1.0) (2023-02-07)
4
11
 
5
12
 
@@ -509,7 +509,7 @@ function configurePlugins(options) {
509
509
  new RegExp(`^\\./(${(contextReplacement.locale || ['ru']).join('|')})$`)));
510
510
  plugins.push(new webpack.ContextReplacementPlugin(/dayjs[\\/]locale$/,
511
511
  // eslint-disable-next-line security/detect-non-literal-regexp
512
- new RegExp(`^\\./(${(contextReplacement.locale || ['ru']).join('|')})$`)));
512
+ new RegExp(`^\\./(${(contextReplacement.locale || ['ru']).join('|')})\\.js$`)));
513
513
  if (contextReplacement['highlight.js']) {
514
514
  plugins.push(new webpack.ContextReplacementPlugin(/highlight\.js[\\/]lib[\\/]languages$/,
515
515
  // eslint-disable-next-line security/detect-non-literal-regexp
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/app-builder",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",