Skip to content

Commit

Permalink
lint after build
Browse files Browse the repository at this point in the history
  • Loading branch information
theinterned committed Jan 24, 2024
1 parent 9358f76 commit 0c9430c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src/*.ts test/*.js",
"prebuild": "npm run clean && npm run lint",
"prebuild": "npm run clean",
"build": "tsc && tsc -m umd --outDir dist/umd",
"pretest": "npm run build",
"pretest": "npm run build && npm run lint",
"test": "karma start karma.config.js",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// eslint-disable-next-line import/no-unresolved, import/extensions
// eslint-disable-next-line import/extensions
import {persistResumableFields, restoreResumableFields} from '../dist/index.js'

describe('session-resume', function () {
Expand Down

0 comments on commit 0c9430c

Please sign in to comment.