使用javascript获取nx工作区依赖性及其src / lib文件夹

时间:2019-11-21 20:49:15

标签: nrwl nrwl-nx

我当前正在将nrwl nx工作空间转换为我的项目,对我来说超级有用的一件事是,如果有一种简单的方法来获取项目的根和sourceRoot依赖项。是否存在使用@ nrwl / workspace中提供的方法的现有方法?

插入代码并仅获取与特定应用程序相关的提交消息,需要了解从属目录。

module.exports = {
  module: {
    rules: [
      {
        test: /\.(js|ts)$/,
        loader: 'istanbul-instrumenter-loader',
        options: { esModules: true },
        enforce: 'post',
        // I would prefer to just call getDependencies('member-portal) then do some array mapping to provide an array of src paths.
        include: [
          require('path').join(__dirname, '..', 'member-portal', 'src'),
          require('path').join(__dirname, '..', '..', 'libs', 'member-portal'),
        ],
        exclude: [/\.(e2e|spec)\.ts$/, /node_modules/, /(ngfactory|ngstyle)\.js/],
      },
    ],
  },
  stats: 'verbose',
};

0 个答案:

没有答案