m8flow 1.0.1 → 1.0.2

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.
@@ -8,8 +8,8 @@
8
8
  <link rel="preconnect" href="https://fonts.googleapis.com" />
9
9
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
10
10
  <title>M8Flow — ML Pipeline Builder</title>
11
- <script type="module" crossorigin src="/assets/index-Dm2J6DQp.js"></script>
12
- <link rel="stylesheet" crossorigin href="/assets/index-xKOV3MGm.css">
11
+ <script type="module" crossorigin src="/assets/index-CZCCzeUC.js"></script>
12
+ <link rel="stylesheet" crossorigin href="/assets/index-BAQ3lKsy.css">
13
13
  </head>
14
14
  <body>
15
15
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "m8flow",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Visual ML Pipeline Builder — run locally with one command",
5
5
  "keywords": [
6
6
  "machine-learning",
package/scripts/build.js CHANGED
@@ -13,7 +13,6 @@ import { execSync } from 'child_process';
13
13
  import fs from 'fs';
14
14
  import path from 'path';
15
15
  import { fileURLToPath } from 'url';
16
- import crypto from 'crypto';
17
16
 
18
17
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
19
18
  const CLI_DIR = path.resolve(__dirname, '..');
@@ -28,7 +27,7 @@ const FRONTEND_OUT = path.join(BUNDLED_DIR, 'frontend-dist');
28
27
  // Skip these when copying the Python source
29
28
  const BACKEND_SKIP = new Set([
30
29
  'venv', '__pycache__', '.env', '.env.local', '.env.production',
31
- 'uploads', 'models', 'pipelines', 'storage',
30
+ 'uploads', 'models', 'pipelines',
32
31
  'node_modules', '.git', '.mypy_cache', '.ruff_cache',
33
32
  'dist', '*.pyc', '*.pyo', '*.pyd',
34
33
  ]);