Skip to content

Commit 68c6743

Browse files
committed
fix exports pathing
1 parent 22c5831 commit 68c6743

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@
3939
"name": "Asa Kusuma"
4040
},
4141
"homepage": "https://github.com/linkedin/spaniel",
42-
"jsnext:main": "exports/es6/index.js",
43-
"module": "exports/es6/index.js",
44-
"typings": "exports/es6/index.d.ts",
42+
"module": "exports/index.js",
43+
"typings": "exports/index.d.ts",
4544
"devDependencies": {
4645
"@babel/core": "^7.2.2",
4746
"@babel/preset-env": "^7.2.2",
@@ -91,4 +90,4 @@
9190
"git add"
9291
]
9392
}
94-
}
93+
}

rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
2-
entry: 'exports/es6/index.js',
2+
entry: 'exports/index.js',
33
format: 'umd',
4-
dest: 'exports/es6/spaniel.js',
4+
dest: 'exports/spaniel.js',
55
exports: 'named',
66
sourceMap: true
77
};

0 commit comments

Comments
 (0)