Skip to content

Commit ddf05e5

Browse files
author
Piotr Paulski
committed
Cleanup deps, naming convention
1 parent b3643f5 commit ddf05e5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"dependencies": {
4141
"core-js": "3.46.0",
4242
"debug": "4.4.3",
43-
"puppeteer-core": "^24.24.1",
4443
"yargs": "18.0.0"
4544
},
4645
"devDependencies": {

rollup.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import license from 'rollup-plugin-license';
2929

3030
const isProduction = process.env.NODE_ENV === 'production';
3131

32-
const allowed_licenses = [
32+
const allowedLicenses = [
3333
'MIT',
3434
'Apache 2.0',
3535
'Apache-2.0',
@@ -59,7 +59,7 @@ const bundleDependency = (wrapperIndexPath, extraOutputOptions = {}) => ({
5959
thirdParty: {
6060
allow: {
6161
test: dependency => {
62-
return allowed_licenses.includes(dependency.license);
62+
return allowedLicenses.includes(dependency.license);
6363
},
6464
failOnUnlicensed: true,
6565
failOnViolation: true,

0 commit comments

Comments
 (0)