Skip to content

Commit

Permalink
make create plugin public
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Sep 17, 2021
1 parent 0b6cc8d commit 2124c06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions plugin.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
const createPlugin = require('./lib/util/createPlugin')

module.exports = (createPlugin.__esModule ? createPlugin : { default: createPlugin }).default
module.exports = require('./lib/public/create-plugin').default
1 change: 1 addition & 0 deletions src/public/create-plugin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '../util/createPlugin'

0 comments on commit 2124c06

Please sign in to comment.