@datagrok/eda 1.1.22 → 1.1.23

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/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@datagrok/eda",
3
3
  "friendlyName": "EDA",
4
- "version": "1.1.22",
4
+ "version": "1.1.23",
5
5
  "description": "Exploratory Data Analysis Tools",
6
6
  "dependencies": {
7
7
  "@datagrok-libraries/math": "^1.1.5",
8
- "@datagrok-libraries/ml": "^6.6.5",
8
+ "@datagrok-libraries/ml": "^6.6.6",
9
9
  "@datagrok-libraries/tutorials": "^1.3.6",
10
10
  "@datagrok-libraries/utils": "^4.1.44",
11
11
  "@keckelt/tsne": "^1.0.2",
package/src/package.ts CHANGED
@@ -153,6 +153,7 @@ export async function reduceDimensionality(): Promise<void> {
153
153
  fastRowCount: 10000,
154
154
  }, params.postProcessingFunction, params.postProcessingFunctionArgs);
155
155
  }).show();
156
+ dialog.helpUrl = 'https://datagrok.ai/help/explore/dim-reduction.md';
156
157
  const validate = () => {
157
158
  const cols = editor.columnsInput.value;
158
159
  const okButton = dialog.getButton('OK');
package/webpack.config.js CHANGED
@@ -2,6 +2,9 @@ const path = require('path');
2
2
  const packageName = path.parse(require('./package.json').name).name.toLowerCase().replace(/-/g, '');
3
3
 
4
4
  module.exports = {
5
+ cache: {
6
+ type: 'filesystem',
7
+ },
5
8
  mode: 'development',
6
9
  entry: {
7
10
  test: {filename: 'package-test.js', library: {type: 'var', name:`${packageName}_test`}, import: './src/package-test.ts'},