We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2240c59 commit 54fabbeCopy full SHA for 54fabbe
package.json
@@ -45,8 +45,8 @@
45
"scripts": {
46
"clean": "rm -rf lib coverage",
47
"build": "tsc",
48
+ "pretest": "npm run clean && npm run build",
49
"test": "karma start",
- "preversion": "npm run clean && npm run build && npm test",
50
- "postversion": "git push && git push --tags"
+ "preversion": "npm run clean && npm run build"
51
}
52
src/index.ts
@@ -1 +1,5 @@
1
-export * from './matchQueries';
+import matchQueries from './matchQueries';
2
+
3
+export {
4
+ matchQueries
5
+};
0 commit comments