esmate 1.0.2 โ 1.0.3
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 +5 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ linting, and running custom task sequences.
|
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### Format Code
|
|
16
16
|
|
|
17
17
|
Run Prettier to check formatting:
|
|
18
18
|
|
|
@@ -26,7 +26,7 @@ Automatically fix formatting issues:
|
|
|
26
26
|
esmate fmt --fix
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
###
|
|
29
|
+
### Lint Code
|
|
30
30
|
|
|
31
31
|
Run ESLint to check for code issues:
|
|
32
32
|
|
|
@@ -40,11 +40,11 @@ Automatically fix linting issues:
|
|
|
40
40
|
esmate lint --fix
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
### Task Runner
|
|
44
44
|
|
|
45
45
|
Tasks are defined in your `package.json` under a `tasks` field.
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
#### โถ๏ธ Series (Sequential Execution)
|
|
48
48
|
|
|
49
49
|
Run tasks in order, one after another.
|
|
50
50
|
|
|
@@ -68,7 +68,7 @@ Run tasks in order, one after another.
|
|
|
68
68
|
}
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
#### ๐ Parallel Execution
|
|
72
72
|
|
|
73
73
|
Run multiple tasks at the same time.
|
|
74
74
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "esmate",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"description": "Uncomplicate JavaScript",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"es-toolkit": "^1.35.0",
|
|
40
40
|
"find-up": "^7.0.0",
|
|
41
41
|
"nypm": "^0.6.0",
|
|
42
|
-
"@esmate/
|
|
43
|
-
"@esmate/
|
|
42
|
+
"@esmate/prettier": "1.0.0",
|
|
43
|
+
"@esmate/eslint": "1.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@rslib/core": "^0.7.1",
|