@lanes-sh/link 0.6.10 → 0.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gcloudignore +25 -15
- package/package.json +1 -1
package/.gcloudignore
CHANGED
|
@@ -12,9 +12,19 @@
|
|
|
12
12
|
# method is a directory under `~/.bun` with no `.git` in it — so the safe
|
|
13
13
|
# behaviour was being inherited from a coincidence.
|
|
14
14
|
#
|
|
15
|
-
#
|
|
16
|
-
#
|
|
17
|
-
|
|
15
|
+
# **Anchor every directory pattern with a leading slash.** This file is gitignore
|
|
16
|
+
# syntax and `.dockerignore` is not: there, a pattern is relative to the context
|
|
17
|
+
# root, so `docs/` means the one at the top. Here `docs/` means *any* directory
|
|
18
|
+
# called `docs`, at any depth — which is `src/providers/google/docs/`, and
|
|
19
|
+
# stripping it produced an image that built cleanly and died on its first import
|
|
20
|
+
# with `Cannot find module './google/docs/index.ts'`. The two files must say the
|
|
21
|
+
# same thing, not carry the same characters.
|
|
22
|
+
#
|
|
23
|
+
# The credential patterns below are deliberately *not* anchored: a stray `*.key`
|
|
24
|
+
# is worth excluding wherever it turns up. `data/` is, because the credential
|
|
25
|
+
# store is one known directory and a source directory called `data` would be a
|
|
26
|
+
# legitimate part of the package.
|
|
27
|
+
/data/
|
|
18
28
|
*.key
|
|
19
29
|
*.pem
|
|
20
30
|
*.enc
|
|
@@ -23,28 +33,28 @@ data/
|
|
|
23
33
|
.env.*
|
|
24
34
|
|
|
25
35
|
# Not needed to build, and `.git` in particular carries every branch.
|
|
26
|
-
|
|
36
|
+
/.git/
|
|
27
37
|
.gitignore
|
|
28
|
-
|
|
38
|
+
/.worktrees/
|
|
29
39
|
node_modules/
|
|
30
40
|
**/node_modules/
|
|
31
|
-
coverage/
|
|
32
|
-
dist/
|
|
33
|
-
build/
|
|
41
|
+
/coverage/
|
|
42
|
+
/dist/
|
|
43
|
+
/build/
|
|
34
44
|
*.tsbuildinfo
|
|
35
45
|
|
|
36
46
|
# Tests, docs and tooling: the image runs the endpoint and nothing else.
|
|
37
47
|
**/*.test.ts
|
|
38
48
|
**/*.test.json
|
|
39
|
-
docs/
|
|
40
|
-
instructions/
|
|
49
|
+
/docs/
|
|
50
|
+
/instructions/
|
|
41
51
|
**/README.md
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
52
|
+
/.lanes/
|
|
53
|
+
/.claude/
|
|
54
|
+
/.vscode/
|
|
55
|
+
/.idea/
|
|
46
56
|
.DS_Store
|
|
47
|
-
|
|
57
|
+
/.playwright-mcp/
|
|
48
58
|
|
|
49
59
|
# The compiled binary from `bun build --compile`, if one was made locally.
|
|
50
60
|
/lanes
|
package/package.json
CHANGED