Skip to content

Commit 54fabbe

Browse files
committed
Fix index export
1 parent 2240c59 commit 54fabbe

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"scripts": {
4646
"clean": "rm -rf lib coverage",
4747
"build": "tsc",
48+
"pretest": "npm run clean && npm run build",
4849
"test": "karma start",
49-
"preversion": "npm run clean && npm run build && npm test",
50-
"postversion": "git push && git push --tags"
50+
"preversion": "npm run clean && npm run build"
5151
}
5252
}

src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
export * from './matchQueries';
1+
import matchQueries from './matchQueries';
2+
3+
export {
4+
matchQueries
5+
};

0 commit comments

Comments
 (0)