structured-fw 0.8.4 → 0.8.41

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 (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -5,6 +5,9 @@ Framework allows the developer to develop self-contained components which are re
5
5
 
6
6
  It works with Node.js and Deno runtimes. Other runtimes are not tested.
7
7
 
8
+ > [!NOTE]
9
+ > While Structured framework is in development for a couple of years and is production tested, the npm package is introduced recently and there were still issues that came up with it in the past few versions. Since version 0.8.3 all should be functional. Please update to latest version and check for updates regularly until the npm package is as stable as the framework itself. Feel free to open issues on the github page if you have any issues with the npm package or the framework. _Structured followed versioning x.y.z where z was a single digit 0-9, but since there were a couple of versions that introduced no changes to the framework and were just npm package tweaks, I decided to make an exception to the rule and allow myself to use 2 digits for such updates._
10
+
8
11
  - [Why Structured](#why-structured)
9
12
  - [Audience](#audience)
10
13
  - [Getting started](#getting-started)
package/package.json CHANGED
@@ -14,13 +14,13 @@
14
14
  "license": "MIT",
15
15
  "type": "module",
16
16
  "main": "build/index",
17
- "version": "0.8.4",
17
+ "version": "0.8.41",
18
18
  "scripts": {
19
19
  "develop": "tsc --watch",
20
20
  "startDev": "cd build && nodemon --watch '../app/**/*' --watch '../build/**/*' -e js,html,css index.js",
21
21
  "start": "cd build && node index.js",
22
- "prepublish": "tsc && mv tsconfig.json _ts.json",
23
- "postpublish": "mv _ts.json tsconfig.json"
22
+ "prepublish": "tsc",
23
+ "postinstall": "rm tsconfig.json"
24
24
  },
25
25
  "bin": {
26
26
  "structured": "./build/system/bin/structured.js"