Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up package configurations #574

Merged
merged 9 commits into from Jan 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
35 changes: 17 additions & 18 deletions .gitignore
@@ -1,25 +1,24 @@
node_modules/
dist/
.env.development
.env.test
.env.production
# playground/sandbox folder
sandbox/
# Webpack stats
stats.json
# Firebasse hosting cache
.firebase/
# firebase projects config
# dependencies
**/node_modules/

# testing
**/coverage/

# production
**/build/

# Firebase
.firebase
.firebaserc
# produced by firebase serve
firebase-debug.log
# yarn error logs, e.g. when package not found in npm DB
yarn-error.log

# WebStorm just in case
.idea
# Policies
PrivacyPolicy
CookiePolicy

# misc
npm-debug.log*
yarn-debug.log*
yarn-error.log*

############################# macOS
.DS_Store
Expand Down
16 changes: 0 additions & 16 deletions .vscode/launch.json

This file was deleted.

35 changes: 0 additions & 35 deletions .vscode/settings.json

This file was deleted.

48 changes: 0 additions & 48 deletions .vscode/tasks.json

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Expand Up @@ -46,6 +46,7 @@ Already have some document or spreadsheet with your hiking/climbing gear and wan
### 0.4.0

- Add custom categories.
- Add infinite scroll pagination.

### 0.3.0

Expand Down
4 changes: 2 additions & 2 deletions firebase.json
@@ -1,6 +1,6 @@
{
"hosting": {
"public": "packages/web-app/dist",
"public": "packages/web-app/build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
Expand All @@ -10,7 +10,7 @@
]
},
"firestore": {
"rules": "firestore.rules"
"rules": "packages/cloud-functions/firestore.rules"
},
"functions": {
"source": "packages/cloud-functions"
Expand Down