Skip to content

Commit e46a1fb

Browse files
author
Scott Prue
committed
fix(examples): update material example
fix(types): switch typeof Firebase to any (prevents issue with passing some version of Firebase JS SDK)
1 parent 97148df commit e46a1fb

Some content is hidden

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

64 files changed

+14846
-20739
lines changed

examples/complete/material/.env.local

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
NODE_PATH=src/
21
CI=false
32
# Needed to skip warnings from jest@beta in package.json
43
SKIP_PREFLIGHT_CHECK=true
+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**/coverage/**
22
**/node_modules/**
33
dist/**
4+
build/**
45
src/index.html
56
blueprints/**
67
src/config.js

examples/complete/material/.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module.exports = {
2-
'extends': ['react-app', 'prettier'],
2+
'extends': ['react-app', 'prettier', 'prettier/react'],
33
root: true,
44
parser: 'babel-eslint',
55
plugins: ['import', 'babel', 'react', 'prettier'],
66
settings: {
77
react: {
8-
version: '16.6'
8+
version: '16.8'
99
},
1010
'import/resolver': {
1111
node: {

examples/complete/material/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
**/node_modules
99

1010
# React App
11-
**/build
11+
build
1212
src/config.js
1313
.env

examples/complete/material/firebase.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"ignore": [
1111
"firebase.json",
1212
"**/.*",
13-
"**/node_modules/**"
13+
"**/node_modules/**",
14+
"jsconfig.json",
15+
"cypress/**"
1416
],
1517
"rewrites": [
1618
{

examples/complete/material/jsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"baseUrl": "./src",
44
"paths": {
55
"utils/*": [
6-
"utils/*",
6+
"utils/*"
77
]
88
}
99
},

0 commit comments

Comments
 (0)