@iebh/tera-fy 1.4.3 → 1.4.4

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.4.4](https://github.com/IEBH/TERA-fy/compare/v1.4.3...v1.4.4) (2024-05-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Allow raw access to the /dist/ directory for weirder imports ([42a3a85](https://github.com/IEBH/TERA-fy/commit/42a3a8535980efbed44b25460b37b271be3b818e))
9
+ * Mark setPageUrl as fixme ([f481e08](https://github.com/IEBH/TERA-fy/commit/f481e08d2ad3e4c8e78504ca9fa4c54b13ce23f0))
10
+
3
11
  ## [1.4.3](https://github.com/IEBH/TERA-fy/compare/v1.4.2...v1.4.3) (2024-05-07)
4
12
 
5
13
  ## [1.4.2](https://github.com/IEBH/TERA-fy/compare/v1.4.1...v1.4.2) (2024-05-02)
@@ -1193,6 +1193,7 @@ export default class TeraFyServer {
1193
1193
  */
1194
1194
  setPageUrl(url) {
1195
1195
  debugger; // FIXME: Untested
1196
+ console.info('FIXME: Unsupported setPageUrl(', url, ')');
1196
1197
  }
1197
1198
 
1198
1199
  // }}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iebh/tera-fy",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "TERA website worker",
5
5
  "scripts": {
6
6
  "dev": "esbuild --platform=browser --format=esm --bundle lib/terafy.client.js --outfile=dist/terafy.js --minify --serve --servedir=.",
@@ -26,6 +26,7 @@
26
26
  "require": "./dist/terafy.js",
27
27
  "default": "./dist/terafy.js"
28
28
  },
29
+ "./dist/*": "./dist/*",
29
30
  "./projectFile": "./lib/projectFile.js",
30
31
  "./server": "./lib/terafy.server.js",
31
32
  "./plugins/*": "./plugins/*.js",