@docsvision/webclient-extension-build 5.16.0-beta.2 → 5.17.0-beta.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,3 +1,7 @@
1
+ 5.16.1 - Исправлено предупреждение во время сборки от плагина @rollup/plugin-replace.
2
+ 5.16.0 - Обновлена сборка для Web-клиента 16.
3
+ 5.15.0 - Обновлена сборка для Web-клиента 15, исправлены предупреждения во время сборки.
4
+ 5.13.0 - Обновлены зависимости.
1
5
  5.12.3 - Исправлена сборка внешних npm-зависимостей.
2
6
  5.12.2 - Добавлен файл README.
3
7
  5.12.1 - Исправлена работа source maps.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docsvision/webclient-extension-build",
3
- "version": "5.16.0-beta.2",
3
+ "version": "5.17.0-beta.1",
4
4
  "description": "Helper tools for building DocsVision WebClient scripts and extensions.",
5
5
  "main": "index.js",
6
6
  "scripts": {},
package/rollup.config.js CHANGED
@@ -10,7 +10,7 @@ const commonjs = require("@rollup/plugin-commonjs");
10
10
  const plugins = [
11
11
  typescript(),
12
12
  nodeResolve({ preferBuiltins: true }),
13
- replace({ 'process.env.NODE_ENV': `'${process.env.NODE_ENV}'` }),
13
+ replace({ values: { 'process.env.NODE_ENV': `'${process.env.NODE_ENV}'`}, preventAssignment: true }),
14
14
  builtins(),
15
15
  commonjs()
16
16
  ];
@@ -32,6 +32,6 @@ module.exports = {
32
32
  "tslib", "number-to-locale-string-polyfill*", "js-base64",
33
33
  "alloyfinger", "micro-memoize", "@docsvision/material-ui-pickers", "@material-ui/core", "@date-io/moment", '@material-ui/styles',
34
34
  "react-input-mask", "file-saver", "microevent.ts",
35
- "effector", "effector-react"].includes(moduleName);
35
+ "effector", "effector-react", "patronum/throttle"].includes(moduleName);
36
36
  }
37
37
  };