@iconoma/cli 0.0.1-beta.1 → 0.0.1-beta.2
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 +2 -2
- package/bin/run.js +0 -0
- package/oclif.manifest.json +1 -1
- package/package.json +14 -9
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @iconoma/cli
|
|
|
20
20
|
$ iconoma COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ iconoma (--version)
|
|
23
|
-
@iconoma/cli/0.0.1-beta.
|
|
23
|
+
@iconoma/cli/0.0.1-beta.2 linux-x64 node-v20.19.6
|
|
24
24
|
$ iconoma --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ iconoma COMMAND
|
|
@@ -370,5 +370,5 @@ EXAMPLES
|
|
|
370
370
|
$ iconoma studio
|
|
371
371
|
```
|
|
372
372
|
|
|
373
|
-
_See code: [src/commands/studio.ts](https://github.com/theryston/iconoma/blob/v0.0.1-beta.
|
|
373
|
+
_See code: [src/commands/studio.ts](https://github.com/theryston/iconoma/blob/v0.0.1-beta.2/src/commands/studio.ts)_
|
|
374
374
|
<!-- commandsstop -->
|
package/bin/run.js
CHANGED
|
File without changes
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconoma/cli",
|
|
3
3
|
"description": "A developer-friendly tool to manage and organize icons through CLI and web studio",
|
|
4
|
-
"version": "0.0.1-beta.
|
|
4
|
+
"version": "0.0.1-beta.2",
|
|
5
5
|
"author": "Theryston Santos @Theryston",
|
|
6
6
|
"bin": {
|
|
7
|
-
"iconoma": "
|
|
7
|
+
"iconoma": "bin/run.js"
|
|
8
8
|
},
|
|
9
9
|
"private": false,
|
|
10
10
|
"publishConfig": {
|
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
"open": "^11.0.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
+
"@iconoma/eslint-config": "workspace:*",
|
|
25
|
+
"@iconoma/typescript-config": "workspace:*",
|
|
24
26
|
"@types/chai": "^4",
|
|
25
27
|
"@types/mocha": "^10",
|
|
26
28
|
"@types/node": "^18",
|
|
@@ -30,9 +32,7 @@
|
|
|
30
32
|
"oclif": "^4",
|
|
31
33
|
"shx": "^0.3.3",
|
|
32
34
|
"ts-node": "^10",
|
|
33
|
-
"typescript": "^5"
|
|
34
|
-
"@iconoma/eslint-config": "0.0.0",
|
|
35
|
-
"@iconoma/typescript-config": "0.0.0"
|
|
35
|
+
"typescript": "^5"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
38
|
"node": ">=18.0.0"
|
|
@@ -64,12 +64,17 @@
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
|
-
"repository":
|
|
68
|
-
|
|
67
|
+
"repository": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "git+https://github.com/theryston/iconoma.git"
|
|
70
|
+
},
|
|
69
71
|
"scripts": {
|
|
70
72
|
"postbuild": "node scripts/bundle-studio.js",
|
|
71
73
|
"build": "shx rm -rf dist && tsc -b",
|
|
72
74
|
"lint": "eslint",
|
|
75
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
76
|
+
"prepack": "oclif manifest && oclif readme",
|
|
73
77
|
"version": "oclif readme && git add README.md"
|
|
74
|
-
}
|
|
75
|
-
|
|
78
|
+
},
|
|
79
|
+
"types": "dist/index.d.ts"
|
|
80
|
+
}
|