Yuki Takei 7 лет назад
Родитель
Сommit
0cee1af5d2

+ 1 - 1
packages/growi-plugin-lsx/src/index.js

@@ -1 +1 @@
-export * from './meta';
+module.exports = require('./meta');

+ 1 - 1
packages/growi-plugin-lsx/src/meta.js

@@ -1,6 +1,6 @@
 const path = require('path');
 
-export default {
+module.exports = {
   pluginSchemaVersion: 2,
   serverEntries: [
     path.join(__dirname, 'server-entry.js')

+ 1 - 1
packages/growi-plugin-lsx/src/server-entry.js

@@ -1,4 +1,4 @@
-export default (crowi, app) => {
+module.exports = (crowi, app) => {
   // add routes
   require('./lib/routes')(crowi, app);
 }