Skip to content

Commit

Permalink
Clean up package configurations (#574)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
IgorKrupenja committed Jan 23, 2022
1 parent 004a3a5 commit 6bec0b7
Show file tree
Hide file tree
Showing 53 changed files with 2,038 additions and 32,011 deletions.
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

0 comments on commit 6bec0b7

Please sign in to comment.