codify-images 2.0.0 → 2.0.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 +9 -3
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[![Release][Release Badge]][Release Workflow]
|
|
6
6
|
[![Coverage][Coverage Badge]][Coverage Report]
|
|
7
7
|
[![Vulnerabilities][Vulnerabilities Badge]][Vulnerabilities Report]
|
|
8
|
-
[![Node Version][Node Version Badge]](package.json#
|
|
8
|
+
[![Node Version][Node Version Badge]](package.json#L72)
|
|
9
9
|
|
|
10
10
|
Quick and easy tool for converting a set of images into inline JavaScript.
|
|
11
11
|
|
|
@@ -105,7 +105,7 @@ npm i
|
|
|
105
105
|
Execute linters via `npm`.
|
|
106
106
|
|
|
107
107
|
```console
|
|
108
|
-
# git, javascript and
|
|
108
|
+
# git, javascript, markdown and package.json
|
|
109
109
|
npm run lint
|
|
110
110
|
|
|
111
111
|
# git only
|
|
@@ -116,6 +116,9 @@ npm run lint:js
|
|
|
116
116
|
|
|
117
117
|
# markdown only
|
|
118
118
|
npm run lint:md
|
|
119
|
+
|
|
120
|
+
# package.json only
|
|
121
|
+
npm run lint:pkg
|
|
119
122
|
```
|
|
120
123
|
|
|
121
124
|
### Testing
|
|
@@ -135,7 +138,7 @@ npm run test:unit
|
|
|
135
138
|
Execute formatters via `npm`.
|
|
136
139
|
|
|
137
140
|
```console
|
|
138
|
-
# javascript and
|
|
141
|
+
# javascript, markdown and package.json
|
|
139
142
|
npm run format
|
|
140
143
|
|
|
141
144
|
# javascript only
|
|
@@ -143,6 +146,9 @@ npm run format:js
|
|
|
143
146
|
|
|
144
147
|
# markdown only
|
|
145
148
|
npm run format:md
|
|
149
|
+
|
|
150
|
+
# package.json only
|
|
151
|
+
npm run format:pkg
|
|
146
152
|
```
|
|
147
153
|
|
|
148
154
|
### Building
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codify-images",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Quick and easy tool for converting a set of images into inline JavaScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"image",
|
|
@@ -44,29 +44,29 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"chalk": "^4.1.2",
|
|
47
|
-
"commander": "^
|
|
47
|
+
"commander": "^11.1.0",
|
|
48
48
|
"lodash.camelcase": "^4.3.0",
|
|
49
49
|
"mini-svg-data-uri": "^1.4.4",
|
|
50
50
|
"mkdirp": "^3.0.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@babel/cli": "^7.
|
|
54
|
-
"@babel/register": "^7.
|
|
55
|
-
"@commitlint/cli": "^17.
|
|
56
|
-
"@devpow112/babel-config": "^1.1.
|
|
57
|
-
"@devpow112/commitlint-config": "^
|
|
58
|
-
"@devpow112/eslint-config": "^
|
|
53
|
+
"@babel/cli": "^7.23.0",
|
|
54
|
+
"@babel/register": "^7.22.15",
|
|
55
|
+
"@commitlint/cli": "^17.7.2",
|
|
56
|
+
"@devpow112/babel-config": "^1.1.2",
|
|
57
|
+
"@devpow112/commitlint-config": "^2.0.0",
|
|
58
|
+
"@devpow112/eslint-config": "^2.0.1",
|
|
59
59
|
"@devpow112/semantic-release-config": "^2.1.2",
|
|
60
|
-
"chai": "^4.3.
|
|
61
|
-
"eslint": "^8.
|
|
62
|
-
"markdownlint-cli": "^0.
|
|
60
|
+
"chai": "^4.3.10",
|
|
61
|
+
"eslint": "^8.51.0",
|
|
62
|
+
"markdownlint-cli": "^0.37.0",
|
|
63
63
|
"mocha": "^10.2.0",
|
|
64
64
|
"npm-run-all": "^4.1.5",
|
|
65
65
|
"nyc": "^15.1.0",
|
|
66
|
-
"rimraf": "^5.0.
|
|
67
|
-
"semantic-release": "^21.
|
|
68
|
-
"sinon": "^
|
|
69
|
-
"sort-package-json": "^2.
|
|
66
|
+
"rimraf": "^5.0.5",
|
|
67
|
+
"semantic-release": "^21.1.2",
|
|
68
|
+
"sinon": "^16.1.0",
|
|
69
|
+
"sort-package-json": "^2.6.0"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=18"
|