@jseeio/jsee 0.4.2 → 0.8.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.
Files changed (66) hide show
  1. package/CHANGELOG.md +96 -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/browser-bundle-node.js +9 -0
  13. package/src/cli.js +479 -67
  14. package/src/extended-imports.js +11 -0
  15. package/src/main.js +232 -44
  16. package/src/overlay.js +26 -1
  17. package/src/utils.js +386 -16
  18. package/templates/common-inputs.js +88 -0
  19. package/templates/common-outputs.js +340 -4
  20. package/templates/minimal-app.vue +367 -0
  21. package/templates/minimal-input.vue +573 -0
  22. package/templates/minimal-output.vue +426 -0
  23. package/templates/virtual-table.vue +194 -0
  24. package/.claude/settings.local.json +0 -15
  25. package/.eslintrc.js +0 -38
  26. package/AGENTS.md +0 -65
  27. package/CLAUDE.md +0 -5
  28. package/CNAME +0 -1
  29. package/_config.yml +0 -26
  30. package/dist/jsee.js +0 -1
  31. package/dump.sh +0 -23
  32. package/jest-puppeteer.config.js +0 -14
  33. package/jest.config.js +0 -8
  34. package/jest.unit.config.js +0 -8
  35. package/jsee.dump.txt +0 -5459
  36. package/load/index.html +0 -52
  37. package/templates/bulma-app.vue +0 -242
  38. package/templates/bulma-input.vue +0 -125
  39. package/templates/bulma-output.vue +0 -101
  40. package/test/arrow-main.html +0 -18
  41. package/test/arrow-worker.html +0 -18
  42. package/test/class.html +0 -22
  43. package/test/code.html +0 -25
  44. package/test/codew.html +0 -25
  45. package/test/example-class.js +0 -8
  46. package/test/example-sum.js +0 -3
  47. package/test/fixtures/lodash-like.js +0 -15
  48. package/test/fixtures/upload-sample.csv +0 -3
  49. package/test/importw.html +0 -28
  50. package/test/minimal.html +0 -14
  51. package/test/minimal1.html +0 -13
  52. package/test/minimal2.html +0 -15
  53. package/test/minimal3.html +0 -10
  54. package/test/minimal4.html +0 -22
  55. package/test/pipeline.html +0 -52
  56. package/test/python.html +0 -41
  57. package/test/runtime-arrow.html +0 -18
  58. package/test/string.html +0 -26
  59. package/test/stringw.html +0 -29
  60. package/test/sum.schema.json +0 -17
  61. package/test/sumw.schema.json +0 -15
  62. package/test/test-basic.test.js +0 -630
  63. package/test/test-python.test.js +0 -23
  64. package/test/unit/cli-fetch.test.js +0 -229
  65. package/test/unit/utils.test.js +0 -908
  66. 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