@hpcc-js/observablehq-compiler 1.1.1 → 1.1.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.
Files changed (52) hide show
  1. package/LICENSE +43 -0
  2. package/README.md +105 -105
  3. package/bin/ojscc.mjs +74 -74
  4. package/dist/index.esm.js +586 -562
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.esm.min.js +2 -2
  7. package/dist/index.esm.min.js.map +1 -1
  8. package/dist/index.js +6716 -6688
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.min.js +3 -3
  11. package/dist/index.min.js.map +1 -1
  12. package/package.json +5 -4
  13. package/src/__package__.ts +3 -3
  14. package/src/__tests__/File Attachments.ts +894 -894
  15. package/src/__tests__/Introduction to Imports.ts +748 -748
  16. package/src/__tests__/Observable TimeChart.ts +771 -771
  17. package/src/__tests__/index.ts +13 -13
  18. package/src/__tests__/node.ts +177 -177
  19. package/src/compiler.md +234 -234
  20. package/src/compiler.ts +279 -264
  21. package/src/cst.ts +172 -172
  22. package/src/index.css +459 -459
  23. package/src/index.ts +6 -7
  24. package/src/util.md +113 -113
  25. package/src/util.ts +163 -153
  26. package/src/writer.ts +80 -80
  27. package/types/__package__.d.ts +3 -3
  28. package/types/__tests__/File Attachments.d.ts +109 -109
  29. package/types/__tests__/Introduction to Imports.d.ts +119 -119
  30. package/types/__tests__/Observable TimeChart.d.ts +110 -110
  31. package/types/__tests__/index.d.ts +1 -1
  32. package/types/__tests__/node.d.ts +1 -1
  33. package/types/compiler.d.ts +90 -87
  34. package/types/compiler.d.ts.map +1 -1
  35. package/types/cst.d.ts +41 -41
  36. package/types/index.d.ts +4 -5
  37. package/types/index.d.ts.map +1 -1
  38. package/types/util.d.ts +28 -25
  39. package/types/util.d.ts.map +1 -1
  40. package/types/writer.d.ts +18 -18
  41. package/types-3.4/__package__.d.ts +4 -0
  42. package/types-3.4/__tests__/File Attachments.d.ts +110 -0
  43. package/types-3.4/__tests__/Introduction to Imports.d.ts +120 -0
  44. package/types-3.4/__tests__/Observable TimeChart.d.ts +111 -0
  45. package/types-3.4/__tests__/index.d.ts +2 -0
  46. package/types-3.4/__tests__/node.d.ts +2 -0
  47. package/types-3.4/compiler.d.ts +94 -0
  48. package/types-3.4/cst.d.ts +42 -0
  49. package/types-3.4/index.d.ts +5 -0
  50. package/types-3.4/util.d.ts +29 -0
  51. package/types-3.4/writer.d.ts +19 -0
  52. package/src/__tests__/tsconfig.json +0 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/observablehq-compiler",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "hpcc-js - ObservableHQ Compiler (unoffical)",
5
5
  "keywords": [
6
6
  "observablehq",
@@ -56,14 +56,14 @@
56
56
  "update": "npx --yes npm-check-updates -u -t minor"
57
57
  },
58
58
  "dependencies": {
59
- "@hpcc-js/observable-shim": "^2.3.0",
59
+ "@hpcc-js/observable-shim": "^2.3.1",
60
60
  "node-fetch": "3.2.10",
61
61
  "yargs": "17.5.1"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@hpcc-js/bundle": "^2.11.3",
65
65
  "@hpcc-js/util": "^2.49.1",
66
- "@observablehq/runtime": "4.24.0",
66
+ "@observablehq/runtime": "4.25.0",
67
67
  "tslib": "2.4.0"
68
68
  },
69
69
  "repository": {
@@ -76,5 +76,6 @@
76
76
  "bugs": {
77
77
  "url": "https://github.com/hpcc-systems/Visualization/issues"
78
78
  },
79
- "homepage": "https://github.com/hpcc-systems/Visualization/tree/trunk/packages/observablehq-compiler"
79
+ "homepage": "https://github.com/hpcc-systems/Visualization/tree/trunk/packages/observablehq-compiler",
80
+ "gitHead": "6dde92103a18dcd317d307f841aeda4c2b8c3048"
80
81
  }
@@ -1,3 +1,3 @@
1
- export const PKG_NAME = "@hpcc-js/observablehq-compiler";
2
- export const PKG_VERSION = "1.1.1";
3
- export const BUILD_VERSION = "2.104.5";
1
+ export const PKG_NAME = "@hpcc-js/observablehq-compiler";
2
+ export const PKG_VERSION = "1.1.3";
3
+ export const BUILD_VERSION = "2.104.6";