Welcome to mirror list, hosted at ThFree Co, Russian Federation.

root.js « template-oss « scripts - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3b960db00069ec525d9d3128f70ec7eebaaa034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = {
  rootRepo: {
    add: {
      '.github/ISSUE_TEMPLATE/config.yml': false,
      '.github/ISSUE_TEMPLATE/bug.yml': false,
      '.github/workflows/ci.yml': 'ci.yml',
      '.github/workflows/ci-release.yml': 'ci-release.yml',
      '.github/dependabot.yml': false,
      '.github/workflows/post-dependabot.yml': false,
    },
  },
  workspaceRepo: {
    add: {
      '.github/workflows/release.yml': false,
      '.github/workflows/ci-release.yml': false,
      '.github/dependabot.yml': false,
      '.github/workflows/post-dependabot.yml': false,
    },
  },
  lockfile: true,
  npm: '.',
  defaultBranch: 'latest',
  distPaths: [
    'index.js',
    'docs/content/**/*.md',
    'docs/output/**/*.html',
    'man',
  ],
  allowPaths: [
    '/node_modules/',
    '/index.js',
    '/Makefile',
    '/make.bat',
    '/DEPENDENCIES.md',
    '/CONTRIBUTING.md',
    '/configure',
    '/changelogs/',
    '/AUTHORS',
    '/.mailmap',
    '/.licensee.json',
    '/.gitattributes',
  ],
  ignorePaths: [
    '/node_modules/.bin/',
    '/node_modules/.cache/',
  ],
  ...require('./branch-specific-config.js'),
}