functionalscript 0.0.268 → 0.0.269

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 +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@ Try FunctionalScript [here](https://functionalscript.com/).
15
15
 
16
16
  In FunctionalScript:
17
17
 
18
- - Any module is a valid JavaScript module
18
+ - Any module is a valid JavaScript module. No additional build steps are required.
19
19
  - Code should not have [side-effects](https://en.wikipedia.org/wiki/Side_effect_(computer_science)). Any JavaScript statement, expression, or function which has a side effect is not allowed in FunctionalScript. There are no exceptions to this rule, such as `unsafe` code which can be found in Rust, C#, and other languages.
20
20
  - A module can't depend on non FunctionalScript module.
21
21
  - It also has no standard library, only a safe subset of standard JavaScript API can be used without referencing other modules.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.0.268",
3
+ "version": "0.0.269",
4
4
  "description": "FunctionalScript is a functional subset of JavaScript",
5
5
  "main": "index.js",
6
6
  "scripts": {