Skip to content

Commit 6bec0b7

Browse files
authored
Clean up package configurations (#574)
* Fix source maps * Fix error on log out * Update roadmap in README * Update .gitignore and privacy policy * Clean up shared package * Move ColorName to shared package * Split ESLint settings * Remove unused file
1 parent 004a3a5 commit 6bec0b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2038
-32011
lines changed

.gitignore

+17-18
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
1-
node_modules/
2-
dist/
3-
.env.development
4-
.env.test
5-
.env.production
6-
# playground/sandbox folder
7-
sandbox/
8-
# Webpack stats
9-
stats.json
10-
# Firebasse hosting cache
11-
.firebase/
12-
# firebase projects config
1+
# dependencies
2+
**/node_modules/
3+
4+
# testing
5+
**/coverage/
6+
7+
# production
8+
**/build/
9+
10+
# Firebase
11+
.firebase
1312
.firebaserc
14-
# produced by firebase serve
1513
firebase-debug.log
16-
# yarn error logs, e.g. when package not found in npm DB
17-
yarn-error.log
14+
1815
# WebStorm just in case
1916
.idea
20-
# Policies
21-
PrivacyPolicy
22-
CookiePolicy
17+
18+
# misc
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
2322

2423
############################# macOS
2524
.DS_Store

.vscode/launch.json

-16
This file was deleted.

.vscode/settings.json

-35
This file was deleted.

.vscode/tasks.json

-48
This file was deleted.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Already have some document or spreadsheet with your hiking/climbing gear and wan
4646
### 0.4.0
4747

4848
- Add custom categories.
49+
- Add infinite scroll pagination.
4950

5051
### 0.3.0
5152

firebase.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"hosting": {
3-
"public": "packages/web-app/dist",
3+
"public": "packages/web-app/build",
44
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
55
"rewrites": [
66
{
@@ -10,7 +10,7 @@
1010
]
1111
},
1212
"firestore": {
13-
"rules": "firestore.rules"
13+
"rules": "packages/cloud-functions/firestore.rules"
1414
},
1515
"functions": {
1616
"source": "packages/cloud-functions"

0 commit comments

Comments
 (0)