@kaviyarasan022/image-compressor-target 1.0.1 → 1.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/.github/publish.yml +31 -0
- package/images/photo_small.jpg +0 -0
- package/index.js +1 -1
- package/package.json +11 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Publish to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main # or "master" — the branch you want to trigger publish
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout repository
|
|
14
|
+
uses: actions/checkout@v4
|
|
15
|
+
|
|
16
|
+
- name: Setup Node.js
|
|
17
|
+
uses: actions/setup-node@v4
|
|
18
|
+
with:
|
|
19
|
+
node-version: 20
|
|
20
|
+
registry-url: 'https://registry.npmjs.org/'
|
|
21
|
+
|
|
22
|
+
- name: Install dependencies
|
|
23
|
+
run: npm ci
|
|
24
|
+
|
|
25
|
+
- name: Build (if applicable)
|
|
26
|
+
run: npm run build --if-present
|
|
27
|
+
|
|
28
|
+
- name: Publish package
|
|
29
|
+
run: npm publish --access public
|
|
30
|
+
env:
|
|
31
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/images/photo_small.jpg
CHANGED
|
Binary file
|
package/index.js
CHANGED
|
@@ -4,7 +4,7 @@ const { compressToTarget } = require("./lib/compressor");
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
|
|
7
|
-
*
|
|
7
|
+
* testss
|
|
8
8
|
* @param {string} inputPath - Path to input image file (jpg/png/webp)
|
|
9
9
|
* @param {string} outputPath - Path where compressed image will be saved
|
|
10
10
|
* @param {string|number} targetSize - e.g. "300kb", "1mb", or bytes number
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaviyarasan022/image-compressor-target",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A Node.js CLI tool to compress images to a target size.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,10 +9,19 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
11
|
},
|
|
12
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"image",
|
|
14
|
+
"compressor",
|
|
15
|
+
"cli",
|
|
16
|
+
"tool",
|
|
17
|
+
"image-optimization"
|
|
18
|
+
],
|
|
13
19
|
"author": "Kaviyarasan M",
|
|
14
20
|
"license": "MIT",
|
|
15
21
|
"dependencies": {
|
|
16
22
|
"axios": "^1.12.2"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"husky": "^9.1.7"
|
|
17
26
|
}
|
|
18
27
|
}
|