This repository has been archived by the owner on Apr 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
61 lines (51 loc) · 1.53 KB
/
.gitignore
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
49
50
51
52
53
54
55
56
57
58
59
60
61
.vscode
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Env vars
.env
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/build
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Amplify resources that are auto-ignored by the Amplify CLI:
amplify/\#current-cloud-backend
amplify/.config/local-*
amplify/mock-data
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
build/
dist/
node_modules/
awsconfiguration.json
#aws-exports.js
amplifyconfiguration.json
amplify-build-config.json
amplify-gradle-config.json
amplifyxc.config
# Amplify resources we're manually ignoring. May break things.
# We don't need to check in environments:
# https://aws-amplify.github.io/docs/cli-toolchain/quickstart#teamprovider
amplify/team-provider-info.json
# We compile JS into this folder so that the Amplify CLI can produce a JS bundle.
amplify/backend/function/*/src
# When you push a new build, which kicks of Amplify CD, it's going to run
# `yarn install` in each function's src folder. That can't fail, so we need
# a package.json in that folder. After that happens, it'll run a corresponding
# `amplify:<function name>` hook from the root `package.json` in this repo,
# if one exists. That's what is going to compile our functions from TS to JS.
#
# In the future, it may be nice to upstream support for customizing the
# src folder for functions in amplify.
!amplify/backend/function/*/src/package.json