eolang 0.35.0 → 0.35.1
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/README.md +2 -2
- package/eo-version.txt +1 -1
- package/package.json +1 -1
- package/src/commands/lint.js +1 -1
- package/src/version.js +2 -2
package/README.md
CHANGED
|
@@ -20,14 +20,14 @@ First, you install [npm][npm-install] and [Java SE][java-se].
|
|
|
20
20
|
Then, you install [eolang][npm] package, using [npm][npm-install]:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm install -g eolang@0.
|
|
23
|
+
npm install -g eolang@0.35.0
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
You can also use [Homebrew] (on macOS):
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
brew tap objectionary/eoc https://github.com/objectionary/eoc
|
|
30
|
-
brew install objectionary/eoc/eolang@0.
|
|
30
|
+
brew install objectionary/eoc/eolang@0.35.0
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Or install it via [Nix flakes](https://nixos.wiki/wiki/Flakes):
|
package/eo-version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.61.0
|
package/package.json
CHANGED
package/src/commands/lint.js
CHANGED
|
@@ -15,7 +15,7 @@ const semver = require('semver');
|
|
|
15
15
|
* @return {Promise} of assemble task
|
|
16
16
|
*/
|
|
17
17
|
module.exports = function(opts) {
|
|
18
|
-
const extra =
|
|
18
|
+
const extra = extras(opts);
|
|
19
19
|
return elapsed(async (tracked) => {
|
|
20
20
|
if (goals(opts)[0] === 'eo:lint') {
|
|
21
21
|
try {
|
package/src/version.js
CHANGED