Skip to content

Commit

Permalink
Lint build.mjs and remove old lint config file
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott committed Sep 8, 2024
1 parent a8b6791 commit a1e66ee
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"watch:esm:release": "npm run build target:esm:release -- -w",
"watch:esm:debug": "npm run build target:esm:debug -- -w",
"docs": "typedoc",
"lint": "eslint scripts src test utils eslint.config.mjs rollup.config.mjs",
"lint": "eslint scripts src test utils build.mjs eslint.config.mjs rollup.config.mjs",
"publint": "publint --level error",
"serve": "serve build -l 51000 --cors",
"test": "mocha --recursive --require test/fixtures.mjs",
Expand Down
5 changes: 0 additions & 5 deletions tests/.eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion utils/rollup-babel-options.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function babelOptions(isDebug, isUMD) {
[
'@babel/preset-env', {
bugfixes: !isUMD,
loose: true, // DECPRECATED IN BABEL 8
loose: true, // DEPRECATED IN BABEL 8
modules: false,
targets: {
esmodules: !isUMD,
Expand Down
2 changes: 1 addition & 1 deletion utils/rollup-build-target.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import resolve from '@rollup/plugin-node-resolve';
import strip from '@rollup/plugin-strip';
import terser from '@rollup/plugin-terser';

// unoffical package plugins
// unofficial package plugins
import jscc from 'rollup-plugin-jscc';
import { visualizer } from 'rollup-plugin-visualizer';

Expand Down

0 comments on commit a1e66ee

Please sign in to comment.