@feasibleone/blong-gogo 1.31.2 → 1.31.3

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
+ ## [1.31.3](https://github.com/feasibleone/blong/compare/blong-gogo-v1.31.2...blong-gogo-v1.31.3) (2026-09-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * split core to folders ([3900de8](https://github.com/feasibleone/blong/commit/3900de88defe8a3e9c492c5cf9388ac4ee81d781))
9
+
3
10
  ## [1.31.2](https://github.com/feasibleone/blong/compare/blong-gogo-v1.31.1...blong-gogo-v1.31.2) (2026-09-09)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feasibleone/blong-gogo",
3
- "version": "1.31.2",
3
+ "version": "1.31.3",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/feasibleone/blong.git"
6
6
  },
@@ -88,7 +88,7 @@
88
88
  "tap": "^21.6.3",
89
89
  "typescript": "^6.0.3",
90
90
  "vite": "^8.2.1",
91
- "@feasibleone/blong-dev": "1.2.1"
91
+ "@feasibleone/blong-dev": "1.2.2"
92
92
  },
93
93
  "scripts": {
94
94
  "browser-check": "node scripts/browser-compat-check.mjs",
@@ -17,7 +17,7 @@ import {test} from 'tap';
17
17
 
18
18
  const repoRoot = resolve(dirname(fileURLToPath(import.meta.url)), '..', '..', '..');
19
19
  const blongBin = resolve(repoRoot, 'core', 'blong-gogo', 'bin', 'blong.ts');
20
- const helloDir = resolve(repoRoot, 'core', 'blong-hello');
20
+ const helloDir = resolve(repoRoot, 'demo', 'blong-hello');
21
21
 
22
22
  test(
23
23
  'blong CLI exits 0 with the shutdown marker after timeout sends SIGTERM',
@@ -1,2 +1,2 @@
1
- import config from '../eslint/config.mjs';
1
+ import config from '../../tools/eslint/config.mjs';
2
2
  export default config;