1
0
mirror of https://github.com/lancedikson/bowser synced 2026-09-23 20:44:24 +00:00

fix: bundled.js is not ES5 — restore ES5 output and guard it (#632)

This commit is contained in:
Naor Peled
2026-09-05 23:16:26 +03:00
committed by GitHub
parent 28174aca5e
commit c1208b4a56
11 changed files with 490 additions and 16 deletions

View File

@@ -89,6 +89,7 @@
"@babel/register": "^7.29.7",
"@eslint/js": "^10.0.1",
"@rolldown/plugin-babel": "0.2.3",
"acorn": "^8.18.0",
"ava": "^3.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^8.0.0",
@@ -117,7 +118,8 @@
],
"files": [
"test/**/*.js",
"!test/package/**"
"!test/package/**",
"!test/types/**"
]
},
"bugs": {
@@ -137,7 +139,8 @@
"test:watch": "ava --watch",
"test:package": "node test/package/smoke.cjs",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"generate-docs": "jsdoc -c jsdoc.json"
"generate-docs": "jsdoc -c jsdoc.json",
"test:types": "node test/types/check.mjs"
},
"license": "MIT",
"packageManager": "pnpm@11.18.0"