goldstein 3.1.0 → 3.2.0

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 CHANGED
@@ -1,3 +1,8 @@
1
+ 2023.04.18, v3.2.0
2
+
3
+ feature:
4
+ - 76a336d golstein: add support of CommonJS
5
+
1
6
  2023.04.18, v3.1.0
2
7
 
3
8
  feature:
package/README.md CHANGED
@@ -36,10 +36,10 @@ export fn hello() {
36
36
  $ gs 1.gs
37
37
  $ cat 1.js
38
38
  function hello() {
39
- return "world";
39
+ return "world";
40
40
  }
41
41
  export {
42
- hello
42
+ hello,
43
43
  };
44
44
  ```
45
45
 
@@ -144,7 +144,7 @@ function hello() {
144
144
  `;
145
145
  ```
146
146
 
147
- You can declare variables with using [`@putout/operator-declare`](https://github.com/coderaiser/putout/tree/master/packages/operator-declare).
147
+ You can declare variables with [`@putout/operator-declare`](https://github.com/coderaiser/putout/tree/master/packages/operator-declare).
148
148
 
149
149
  ### `parse(source)`
150
150