kibana/packages/kbn-pm/webpack.config.js
Tiago Costa e3c70f51fc
chore(NA): ensure scripts run with --preserve-symlinks (#94046) (#94636)
* chore(NA): ensure scripts run with --preserve-symlinks

* chore(NA): run webpack configs with symlinks: false

* chore(NA): fix pkg json load on kbn test

* chore(NA): add script into setup node env

* chore(NA): fix kbn test for relative improt

* chore(NA): fix change on docs

* chore(NA): move ensure node preserve symlinks into setup node env

* chore(NA): update changed docs

* chore(NA): update jest unit test

* chore(NA): fix wrapper script exit code

* chore(NA): updated generated plugin list docs

* fix(NA): make functional test runner use kbn utils repo_root

* chore(NA): fix eslint imports

* chore(NA): missing react correct config on eslint package

* chore(NA): use correct value to make test pass locally

* chore(NA): fix jest tests

* chore(NA): try remove extra preserve symlinks

* chore(NA): fix windows environment

* chore(NA): fix kbn-optimizer to run with preserve-symlinks

* chore(NA): fix integration jest test for kbn/optimizer

* chore(NA): remove require.resolve from eslintrc.js

* chore(NA): avoid load json file

* chore(NA): move kbn/utils import into kbn/dev-utils

* chore(NA): use correct dependencies on eslint config package

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-03-15 18:57:30 -04:00

90 lines
2.5 KiB
JavaScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
const path = require('path');
module.exports = {
mode: 'none',
entry: {
index: './src/index.ts',
},
target: 'node',
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
libraryTarget: 'commonjs2',
},
resolve: {
extensions: ['.ts', '.js'],
symlinks: false,
},
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: 'babel-loader',
},
],
exclude: /node_modules/,
},
// Removing an unnecessary require from
// https://github.com/ForbesLindesay/spawn-sync/blob/8ba6d1bd032917ff5f0cf68508b91bb628d16336/index.js#L3
//
// This require would cause warnings when building with Webpack, and it's
// only required for Node <= 0.12.
{
test: /spawn-sync\/index\.js$/,
use: {
loader: 'string-replace-loader',
options: {
search: ` || require('./lib/spawn-sync')`,
replace: '',
strict: true,
},
},
},
// In order to make it work with Node 10 we had the need to upgrade
// the package cpy to a version >= 7.0.0. In this version cpy is
// using the new globby that relies in the fast-glob which relies
// in the new micromatch. The micromatch (use and class-utils) dependencies having a require
// that uses the lazy-cache which cannot be correctly extracted by webpack.
// According to the documentation we should use the unlazy-loader to solve
// this situation: https://github.com/jonschlinkert/lazy-cache#heads-up
// We can also found some issues arround this who also used unlazy-loader
// to solve this: https://github.com/micromatch/micromatch/issues/55
{
test: /node_modules\/(use|class-utils)\/utils\.js$/,
use: {
loader: 'unlazy-loader',
},
},
],
},
node: {
// Don't replace built-in globals
__filename: false,
__dirname: false,
},
externals: {
worker_threads: {
commonjs: 'worker_threads',
},
},
watchOptions: {
ignored: [/node_modules/, /vendor/],
},
};