Skip to content

Commit 836007c

Browse files
committedJul 5, 2024
chore: cleanup .mjs files
1 parent 8b4588f commit 836007c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎config/webpack.build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import webpack_config from "./webpack.config.mjs";
1+
import webpack_config from "./webpack.config.js";
22
import path from "node:path";
33
import { URL } from "node:url";
44

‎eslint.config.mjs ‎eslint.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default [
77
files: ["**/*.{js,mjs,cjs,ts}"],
88
},
99
{
10-
ignores: ["build/", "types/", "temp/"],
10+
ignores: ["build/", "types/", "temp/", "esm/"],
1111
},
1212
pluginJs.configs.recommended,
1313
...tseslint.configs.recommended,

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"build:umd": "npm run build:cjs && webpack --config ./config/webpack.build.js",
3131
"build:cjs": "tsc --project ./tsconfig.cjs.json",
3232
"build:esm": "tsc --project ./tsconfig.esm.json",
33-
"lint": "eslint --config eslint.config.mjs",
33+
"lint": "eslint --config eslint.config.js",
3434
"lint:build": "npm run lint -- --max-warnings 0",
3535
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
3636
"postversion": "git push && git push --tags && npm publish --access=public",

0 commit comments

Comments
 (0)