Skip to content

Commit 859c9a5

Browse files
committed
Merge branch 'master' of github.com:tdewolff/minify
2 parents 7734bb0 + a0c9f63 commit 859c9a5

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
platforms: arm64
3030
- name: Build wheels
31-
uses: pypa/cibuildwheel@v2.21.3
31+
uses: pypa/cibuildwheel@v2.22.0
3232
with:
3333
package-dir: bindings/py
3434
env:
@@ -68,7 +68,7 @@ jobs:
6868
set CGO_ENABLED=1
6969
make -C bindings/py compile
7070
- name: Build wheels
71-
uses: pypa/cibuildwheel@v2.21.3
71+
uses: pypa/cibuildwheel@v2.22.0
7272
with:
7373
package-dir: bindings/py
7474
env:
@@ -103,7 +103,7 @@ jobs:
103103
export MACOSX_DEPLOYMENT_TARGET=10.9
104104
make -C bindings/py compile
105105
- name: Build wheels
106-
uses: pypa/cibuildwheel@v2.21.3
106+
uses: pypa/cibuildwheel@v2.22.0
107107
with:
108108
package-dir: bindings/py
109109
env:
@@ -152,11 +152,11 @@ jobs:
152152
mkdir dist
153153
mv artifacts/*/* dist/
154154
- name: Upload to GitHub Release
155-
uses: softprops/action-gh-release@v2.0.8
155+
uses: softprops/action-gh-release@v2.1.0
156156
with:
157157
files: bindings/py/dist/*
158158
- name: Publish to PyPI
159-
uses: pypa/gh-action-pypi-publish@f7600683efdcb7656dec5b29656edb7bc586e597
159+
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc
160160
with:
161161
user: __token__
162162
password: ${{ secrets.PYPI_API_TOKEN }}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015 Taco de Wolff
1+
Copyright (c) 2025 Taco de Wolff
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,6 +732,6 @@ A typical example is HTML. Whitespace is significant in HTML, meaning that space
732732
Another example is JavaScript. Single or double quoted string literals may not contain newline characters but instead need to escape them as `\n`. These are two bytes instead of a single newline byte. Using template literals it is allowed to have literal newline characters and we can use that fact to shave-off one byte! The result is that the minified output contains newlines instead of escaped newline characters, which makes the final file size smaller. Of course, changing from single or double quotes to template literals depends on other factors as well, and this minifier makes a calculation whether the template literal results in a shorter file size or not before converting a string literal.
733733

734734
## License
735-
Released under the [MIT license](LICENSE.md).
735+
Released under the [MIT license](LICENSE).
736736

737737
[1]: http://golang.org/ "Go Language"

bindings/js/package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
],
4949
"dependencies": {
5050
"node-gyp": "^10.2.0",
51-
"node-gyp-build": "^4.8.2"
51+
"node-gyp-build": "^4.8.4"
5252
},
5353
"devDependencies": {
54-
"node-api-headers": "^1.3.0"
54+
"node-api-headers": "^1.4.0"
5555
}
5656
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.18
44

55
require (
66
github.com/djherbis/atime v1.1.0
7-
github.com/fsnotify/fsnotify v1.7.0
7+
github.com/fsnotify/fsnotify v1.8.0
88
github.com/matryer/try v0.0.0-20161228173917-9ac251b645a2
99
github.com/tdewolff/argp v0.0.0-20240625173203-87b04d5d3e52
1010
github.com/tdewolff/parse/v2 v2.7.19

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 h1:SKI1/fuSdodxmNNyV
44
github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927/go.mod h1:h/aW8ynjgkuj+NQRlZcDbAbM1ORAbXjXX77sX7T289U=
55
github.com/djherbis/atime v1.1.0 h1:rgwVbP/5by8BvvjBNrbh64Qz33idKT3pSnMSJsxhi0g=
66
github.com/djherbis/atime v1.1.0/go.mod h1:28OF6Y8s3NQWwacXc5eZTsEsiMzp7LF8MbXE+XJPdBE=
7-
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
8-
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
7+
github.com/fsnotify/fsnotify v1.8.0 h1:dAwr6QBTBZIkG8roQaJjGof0pp0EeF+tNV7YBP3F/8M=
8+
github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
99
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
1010
github.com/go-sql-driver/mysql v1.7.1/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI=
1111
github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y=

0 commit comments

Comments
 (0)