esmate 1.0.9 → 1.0.10

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 +7 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -9,6 +9,12 @@ with Deno, you will be happy with esmate.
9
9
  - 🛠️ Define and run custom tasks (series and parallel)
10
10
  - ⚡ Fast and minimal configuration
11
11
 
12
+ ## Installation
13
+
14
+ ```bash
15
+ npm install -D esmate
16
+ ```
17
+
12
18
  ## Usage
13
19
 
14
20
  ### Format Code
@@ -120,7 +126,7 @@ Run multiple tasks at the same time.
120
126
  ```json
121
127
  {
122
128
  "tasks": {
123
- "build": {
129
+ "dev": {
124
130
  "scripts": "tsc --watch",
125
131
  "styles": "sass --watch input.scss output.css"
126
132
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "esmate",
3
3
  "type": "module",
4
- "version": "1.0.9",
4
+ "version": "1.0.10",
5
5
  "description": "Uncomplicate JavaScript",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -39,7 +39,7 @@
39
39
  "es-toolkit": "^1.35.0",
40
40
  "find-up": "^7.0.0",
41
41
  "nypm": "^0.6.0",
42
- "@esmate/eslint": "1.0.2",
42
+ "@esmate/eslint": "1.0.3",
43
43
  "@esmate/prettier": "1.0.4"
44
44
  },
45
45
  "devDependencies": {