Skip to content

Commit 9666527

Browse files
committed
Update 2024
1 parent 49ddf3d commit 9666527

7 files changed

+513
-467
lines changed

dist/buttons.common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* github-buttons v2.27.0
3-
* (c) 2023 なつき
3+
* (c) 2024 なつき
44
* @license BSD-2-Clause
55
*/
66
'use strict';

dist/buttons.esm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* github-buttons v2.27.0
3-
* (c) 2023 なつき
3+
* (c) 2024 なつき
44
* @license BSD-2-Clause
55
*/
66
var document = window.document;

dist/buttons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* github-buttons v2.27.0
3-
* (c) 2023 なつき
3+
* (c) 2024 なつき
44
* @license BSD-2-Clause
55
*/
66
(function () {

dist/buttons.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+490-443
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,26 @@
3434
"test": "babel-node --presets @babel/preset-env -- node_modules/karma/bin/karma start --single-run"
3535
},
3636
"devDependencies": {
37-
"@babel/node": "^7.20.7",
38-
"@babel/preset-env": "^7.21.5",
39-
"@primer/octicons": "^19.1.0",
40-
"@primer/primitives": "^7.11.10",
41-
"@rollup/plugin-html": "^1.0.2",
42-
"@rollup/plugin-json": "^6.0.0",
43-
"@rollup/plugin-node-resolve": "^15.0.2",
44-
"@rollup/plugin-replace": "^5.0.2",
45-
"@rollup/plugin-terser": "^0.4.3",
46-
"@rollup/pluginutils": "^5.0.2",
47-
"chai": "^4.3.7",
48-
"eslint": "^8.40.0",
49-
"eslint-config-standard": "^17.0.0",
50-
"eslint-plugin-import": "^2.27.5",
37+
"@babel/node": "^7.22.19",
38+
"@babel/preset-env": "^7.23.7",
39+
"@primer/octicons": "^19.8.0",
40+
"@primer/primitives": "^7.15.5",
41+
"@rollup/plugin-html": "^1.0.3",
42+
"@rollup/plugin-json": "^6.1.0",
43+
"@rollup/plugin-node-resolve": "^15.2.3",
44+
"@rollup/plugin-replace": "^5.0.5",
45+
"@rollup/plugin-terser": "^0.4.4",
46+
"@rollup/pluginutils": "^5.1.0",
47+
"chai": "^4.3.10",
48+
"eslint": "^8.56.0",
49+
"eslint-config-standard": "^17.1.0",
50+
"eslint-plugin-import": "^2.29.1",
5151
"eslint-plugin-node": "^11.1.0",
5252
"eslint-plugin-promise": "^6.1.1",
5353
"karma": "^6.4.2",
5454
"karma-chai": "^0.1.0",
5555
"karma-chrome-launcher": "^3.2.0",
56-
"karma-coverage": "^2.2.0",
56+
"karma-coverage": "^2.2.1",
5757
"karma-firefox-launcher": "^2.1.2",
5858
"karma-mocha": "^2.0.1",
5959
"karma-mocha-reporter": "^2.2.5",
@@ -62,10 +62,10 @@
6262
"karma-sinon": "^1.0.5",
6363
"karma-sinon-chai": "^2.0.2",
6464
"mocha": "^10.2.0",
65-
"rollup": "^4.1.4",
65+
"rollup": "^4.9.2",
6666
"rollup-plugin-istanbul": "^5.0.0",
67-
"sass": "^1.62.1",
68-
"sinon": "^17.0.0",
67+
"sass": "^1.69.6",
68+
"sinon": "^17.0.1",
6969
"sinon-chai": "^3.7.0"
7070
}
7171
}

rollup.config.mjs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ import * as sassImplementation from 'sass'
88
import sassFunctions from './src/scss/_functions.mjs'
99
import fs from 'fs'
1010
import path from 'path'
11-
import url from 'url'
1211

1312
const packageJSON = JSON.parse(fs.readFileSync('package.json'))
1413

1514
const banner =
1615
`/*!
1716
* ${packageJSON.name} v${packageJSON.version}
18-
* (c) ${new Date().getFullYear()} ${packageJSON.author.name}
17+
* (c) ${new Date().getUTCFullYear()} ${packageJSON.author.name}
1918
* @license ${packageJSON.license}
2019
*/`
2120

0 commit comments

Comments
 (0)