@jseeio/jsee 0.4.2 → 0.8.0

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.
Files changed (65) hide show
  1. package/CHANGELOG.md +90 -0
  2. package/LICENSE +21 -0
  3. package/README.md +583 -55
  4. package/dist/2b3e1faf89f94a483539.png +0 -0
  5. package/dist/416d91365b44e4b4f477.png +0 -0
  6. package/dist/8f2c4d11474275fbc161.png +0 -0
  7. package/dist/jsee.core.js +1 -0
  8. package/dist/jsee.full.js +1 -0
  9. package/dist/jsee.runtime.js +2 -1
  10. package/package.json +84 -18
  11. package/src/app.js +127 -32
  12. package/src/cli.js +474 -64
  13. package/src/extended-imports.js +11 -0
  14. package/src/main.js +232 -44
  15. package/src/overlay.js +26 -1
  16. package/src/utils.js +386 -16
  17. package/templates/common-inputs.js +88 -0
  18. package/templates/common-outputs.js +340 -4
  19. package/templates/minimal-app.vue +367 -0
  20. package/templates/minimal-input.vue +573 -0
  21. package/templates/minimal-output.vue +426 -0
  22. package/templates/virtual-table.vue +194 -0
  23. package/.claude/settings.local.json +0 -15
  24. package/.eslintrc.js +0 -38
  25. package/AGENTS.md +0 -65
  26. package/CLAUDE.md +0 -5
  27. package/CNAME +0 -1
  28. package/_config.yml +0 -26
  29. package/dist/jsee.js +0 -1
  30. package/dump.sh +0 -23
  31. package/jest-puppeteer.config.js +0 -14
  32. package/jest.config.js +0 -8
  33. package/jest.unit.config.js +0 -8
  34. package/jsee.dump.txt +0 -5459
  35. package/load/index.html +0 -52
  36. package/templates/bulma-app.vue +0 -242
  37. package/templates/bulma-input.vue +0 -125
  38. package/templates/bulma-output.vue +0 -101
  39. package/test/arrow-main.html +0 -18
  40. package/test/arrow-worker.html +0 -18
  41. package/test/class.html +0 -22
  42. package/test/code.html +0 -25
  43. package/test/codew.html +0 -25
  44. package/test/example-class.js +0 -8
  45. package/test/example-sum.js +0 -3
  46. package/test/fixtures/lodash-like.js +0 -15
  47. package/test/fixtures/upload-sample.csv +0 -3
  48. package/test/importw.html +0 -28
  49. package/test/minimal.html +0 -14
  50. package/test/minimal1.html +0 -13
  51. package/test/minimal2.html +0 -15
  52. package/test/minimal3.html +0 -10
  53. package/test/minimal4.html +0 -22
  54. package/test/pipeline.html +0 -52
  55. package/test/python.html +0 -41
  56. package/test/runtime-arrow.html +0 -18
  57. package/test/string.html +0 -26
  58. package/test/stringw.html +0 -29
  59. package/test/sum.schema.json +0 -17
  60. package/test/sumw.schema.json +0 -15
  61. package/test/test-basic.test.js +0 -630
  62. package/test/test-python.test.js +0 -23
  63. package/test/unit/cli-fetch.test.js +0 -229
  64. package/test/unit/utils.test.js +0 -908
  65. package/webpack.config.js +0 -101
package/dump.sh DELETED
@@ -1,23 +0,0 @@
1
- #!/bin/bash
2
- OUT="jsee.dump.txt"
3
- > "$OUT"
4
-
5
- echo "=== jsee/package.json ===" >> "$OUT"
6
- cat package.json >> "$OUT"
7
- echo "" >> "$OUT"
8
-
9
- for f in src/*.js templates/*.vue templates/*.js; do
10
- [ -f "$f" ] || continue
11
- echo "=== jsee/$f ===" >> "$OUT"
12
- cat "$f" >> "$OUT"
13
- echo "" >> "$OUT"
14
- done
15
-
16
- for f in apps/*/schema.json; do
17
- [ -f "$f" ] || continue
18
- echo "=== jsee/$f ===" >> "$OUT"
19
- cat "$f" >> "$OUT"
20
- echo "" >> "$OUT"
21
- done
22
-
23
- echo "Dumped to $OUT"
@@ -1,14 +0,0 @@
1
- module.exports = {
2
- launch: {
3
- dumpio: false, // dump browser errors to jest
4
- headless: process.env.HEADLESS === 'false' ? false : 'new', // Use new headless mode by default
5
- product: 'chrome',
6
- args: ['--no-sandbox', '--disable-setuid-sandbox'],
7
- },
8
- server: {
9
- command: 'npx http-server -p 8484 --silent',
10
- port: 8484,
11
- launchTimeout: 10000,
12
- },
13
- browserContext: 'default',
14
- }
package/jest.config.js DELETED
@@ -1,8 +0,0 @@
1
- const config = {
2
- preset: 'jest-puppeteer',
3
- verbose: true,
4
- testTimeout: 30000
5
- }
6
-
7
- module.exports = config
8
-
@@ -1,8 +0,0 @@
1
- // Separate config for unit tests (no browser/puppeteer needed)
2
- const config = {
3
- verbose: true,
4
- testTimeout: 10000,
5
- testMatch: ['**/test/unit/**/*.test.js']
6
- }
7
-
8
- module.exports = config