esmate 1.0.1 โ†’ 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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +14 -3
package/README.md CHANGED
@@ -12,7 +12,7 @@ linting, and running custom task sequences.
12
12
 
13
13
  ## Usage
14
14
 
15
- ### ๐Ÿงผ Format Code
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
- ### ๐Ÿ” Lint Code
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
- ## ๐Ÿ“‹ Task Runner
43
+ ### Task Runner
44
44
 
45
45
  Tasks are defined in your `package.json` under a `tasks` field.
46
46
 
47
- ### โ–ถ๏ธ Series (Sequential Execution)
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
- ### ๐Ÿ”€ Parallel Execution
71
+ #### ๐Ÿ”€ Parallel Execution
72
72
 
73
73
  Run multiple tasks at the same time.
74
74
 
package/package.json CHANGED
@@ -1,13 +1,24 @@
1
1
  {
2
2
  "name": "esmate",
3
3
  "type": "module",
4
- "version": "1.0.1",
4
+ "version": "1.0.3",
5
5
  "description": "Uncomplicate JavaScript",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/viendinhcom/esmate.git"
10
10
  },
11
+ "keywords": [
12
+ "esmate",
13
+ "cli",
14
+ "node",
15
+ "javascript",
16
+ "typescript",
17
+ "eslint",
18
+ "prettier",
19
+ "toolkit",
20
+ "utility"
21
+ ],
11
22
  "exports": {
12
23
  "./*": {
13
24
  "types": "./dist/exports/*.d.ts",
@@ -28,8 +39,8 @@
28
39
  "es-toolkit": "^1.35.0",
29
40
  "find-up": "^7.0.0",
30
41
  "nypm": "^0.6.0",
31
- "@esmate/eslint": "1.0.0",
32
- "@esmate/prettier": "1.0.0"
42
+ "@esmate/prettier": "1.0.0",
43
+ "@esmate/eslint": "1.0.0"
33
44
  },
34
45
  "devDependencies": {
35
46
  "@rslib/core": "^0.7.1",