esmate 1.0.10 → 1.0.11
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/LICENSE +16 -0
- package/README.md +14 -2
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Vien Dinh
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
6
|
+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
|
7
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
8
|
+
persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
|
|
11
|
+
Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
14
|
+
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
15
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
16
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ esmate lint --fix
|
|
|
95
95
|
|
|
96
96
|
Tasks are defined in your `package.json` under a `tasks` field.
|
|
97
97
|
|
|
98
|
-
####
|
|
98
|
+
#### Sequential Execution
|
|
99
99
|
|
|
100
100
|
Run tasks in order, one after another.
|
|
101
101
|
|
|
@@ -119,7 +119,13 @@ Run tasks in order, one after another.
|
|
|
119
119
|
}
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
Run the task:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
esmate task build
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
#### Parallel Execution
|
|
123
129
|
|
|
124
130
|
Run multiple tasks at the same time.
|
|
125
131
|
|
|
@@ -133,3 +139,9 @@ Run multiple tasks at the same time.
|
|
|
133
139
|
}
|
|
134
140
|
}
|
|
135
141
|
```
|
|
142
|
+
|
|
143
|
+
Run the task:
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
esmate task dev
|
|
147
|
+
```
|