-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildpack.toml
31 lines (30 loc) · 1 KB
/
buildpack.toml
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
[buildpack]
name = "Node.js"
[publish.Ignore]
files = [
".circleci/",
".github/",
".git2gus/",
"etc/",
"spec/",
"test/",
"makefile",
"Gemfile.lock",
"Gemfile",
"hatchet.json",
"go.mod",
"go.sum",
"hatchet.lock",
"cmd/",
# TODO: get rid of these ignores once the yarn plugins are moved into a separate repo
# for now we just need the compiled plugin in yarn2-plugin/prune-dev-dependencies/bundles
"yarn2-plugins/prune-dev-dependencies/.editorconfig",
"yarn2-plugins/prune-dev-dependencies/package-lock.json",
"yarn2-plugins/prune-dev-dependencies/.gitignore",
"yarn2-plugins/prune-dev-dependencies/package.json",
"yarn2-plugins/prune-dev-dependencies/tsconfig.json",
"yarn2-plugins/prune-dev-dependencies/README.md",
"yarn2-plugins/prune-dev-dependencies/tests",
"yarn2-plugins/prune-dev-dependencies/jest.config.js",
"yarn2-plugins/prune-dev-dependencies/src",
]