1

plugin.js次の内容の file があるとします。

class MyCompiler {
  processFilesForTarget(files) {
    files.forEach(file => {
      const output = myExternalFunction(file);
      file.addJavaScript({
        data: output,
        path: `${file.getDisplayPath()}.js`
      });
    })
  }
}

Plugin.registerCompiler({
  extensions: ['rb', 'js.rb'],
  filenames: []
}, () => new MyCompiler());

myExternalFile.jsの横にあるファイルもありますplugin.jsmyExternalFunctionからインポートしmyExternalFileて で使用したいplugin.js

使用してみimport { myExternalFunction } from 'myExternalFile';ましたが、エラーが表示されます'import' and 'export' may only appear at the top level (17:0)

を使用すると、次のrequireエラーが表示されます: require is not defined

最後に、Npm.requireNPM の依存関係ではないため、使用は機能しません。

では、実際にこれを達成するにはどうすればよいでしょうか。

4

0 に答える 0