Skip to content

Commit

Permalink
fix: fixing lint-staged command
Browse files Browse the repository at this point in the history
  • Loading branch information
willmendesneto committed Oct 20, 2019
1 parent 099dcd2 commit 04cab16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"generate-banner": "node ./scripts/generate-banner.js",
"bundlesize": "bundlesize",
"lint": "eslint '{scripts,src}/**/*.[tj]s'",
"lint:fix": "eslint --fix '{scripts,src}/**/*.[tj]s'",
"lint:fix": "prettier --no-editorconfig --write",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"bundlesize": [
Expand All @@ -80,8 +80,8 @@
}
},
"lint-staged": {
"{scripts,src}/**/*.[tj]s": [
"yarn lint:fix",
"*.{js,ts}": [
"prettier --no-editorconfig --write",
"git add"
]
},
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from './perf-marks';

export * from './is-user-timing-api-supported';

0 comments on commit 04cab16

Please sign in to comment.