plugin.js 347 B

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. class ESBuildPlugin {
  4. apply() {
  5. console.warn('[esbuild-loader] ESBuildPlugin is no longer required for usage and will be removed in the next major release. Please refer to the docs and release notes for more info.');
  6. }
  7. }
  8. exports.default = ESBuildPlugin;