Skip to content

Commit 683c183

Browse files
committed
Make sure we are exporting correctly for non-TypeScript environments
1 parent d793ef3 commit 683c183

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "eslint-plugin-vuejs-accessibility",
33
"version": "0.7.0",
44
"description": "An eslint plugin for checking Vue.js files for accessibility",
5-
"main": "dist/src/index.js",
5+
"main": "dist/index.js",
66
"scripts": {
77
"lint": "eslint --cache .",
88
"prepublishOnly": "tsc -p tsconfig.build.json",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ const plugin = {
5151
}
5252
};
5353

54-
export default plugin;
54+
export = plugin;

0 commit comments

Comments
 (0)