@ispriter/cli 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +6 -4
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @ispriter/cli
2
+
3
+ CLI entry for [iSpriter](https://github.com/iazrael/ispriter).
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g ispriter
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ ispriter -c config.json
15
+ ispriter -f style.css,style2.css -o ./dist/css/
16
+ ispriter -c config.json --watch
17
+ ```
18
+
19
+ ## License
20
+
21
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ispriter/cli",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "ispriter": "./dist/index.js"
@@ -10,15 +10,17 @@
10
10
  "dependencies": {
11
11
  "chokidar": "^5.0.0",
12
12
  "commander": "^12.1.0",
13
- "@ispriter/shared": "2.0.0",
14
- "@ispriter/core": "2.0.0"
13
+ "@ispriter/core": "2.0.1",
14
+ "@ispriter/shared": "2.0.1"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^22.10.0",
18
18
  "tsup": "^8.4.0"
19
19
  },
20
20
  "files": [
21
- "dist"
21
+ "dist",
22
+ "README.md",
23
+ "LICENSE"
22
24
  ],
23
25
  "engines": {
24
26
  "node": ">=20.0.0"