Skip to content

Commit 544fefe

Browse files
Merge branch 'master' into mrschmidt-enforcinglint
2 parents 1fa9aa2 + d0a614c commit 544fefe

File tree

111 files changed

+1046
-3842
lines changed

Some content is hidden

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

111 files changed

+1046
-3842
lines changed

.gitignore

Lines changed: 66 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ dist
44
.awcache
55
/config/project.json
66

7-
# Misc
8-
*.log
9-
107
# OS Specific Files
118
.DS_Store
129

@@ -15,6 +12,70 @@ dist
1512
.vscode
1613
*.iml
1714

18-
# Coverage
19-
.nyc_output
15+
# Logs
16+
logs
17+
*.log
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
22+
# Runtime data
23+
pids
24+
*.pid
25+
*.seed
26+
*.pid.lock
27+
28+
# Directory for instrumented libs generated by jscoverage/JSCover
29+
lib-cov
30+
31+
# Coverage directory used by tools like istanbul
2032
coverage
33+
34+
# nyc test coverage
35+
.nyc_output
36+
37+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
38+
.grunt
39+
40+
# Bower dependency directory (https://bower.io/)
41+
bower_components
42+
43+
# node-waf configuration
44+
.lock-wscript
45+
46+
# Compiled binary addons (https://nodejs.org/api/addons.html)
47+
build/Release
48+
49+
# Dependency directories
50+
node_modules/
51+
jspm_packages/
52+
53+
# TypeScript v1 declaration files
54+
typings/
55+
56+
# Optional npm cache directory
57+
.npm
58+
59+
# Optional eslint cache
60+
.eslintcache
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# dotenv environment variables file
72+
.env
73+
74+
# next.js build output
75+
.next
76+
77+
# rollup-plugin-typescript2 cache
78+
.rpt2_cache/
79+
80+
# NPM Lockfiles
81+
package-lock.json

config/tsconfig.base.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
"declaration": true,
55
"importHelpers": true,
66
"lib": [
7-
"es5",
87
"es2015",
9-
"es2015.promise",
108
"dom"
119
],
1210
"module": "commonjs",

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@
4545
"dependency-graph": "^0.7.0",
4646
"firebase-tools": "^3.17.4",
4747
"glob": "^7.1.2",
48-
"gulp-sourcemaps": "^2.6.4",
49-
"gulp-typescript": "^4.0.1",
5048
"husky": "^0.14.3",
5149
"inquirer": "^5.1.0",
5250
"istanbul-instrumenter-loader": "^3.0.0",

packages/app-types/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
66
"license": "Apache-2.0",
77
"scripts": {
8-
"test": "tsc"
8+
"test": "echo 'Types package, skipping tests'"
99
},
1010
"files": [
1111
"index.d.ts",
1212
"private.d.ts"
1313
],
14-
"devDependencies": {
15-
"typescript": "^2.7.2"
16-
},
1714
"repository": {
1815
"type": "git",
1916
"url": "https://github.com/firebase/firebase-js-sdk/tree/master/packages/app-types"

packages/app-types/test/default.test.ts

Lines changed: 0 additions & 99 deletions
This file was deleted.

packages/app-types/test/singleExport.test.ts

Lines changed: 0 additions & 99 deletions
This file was deleted.

packages/app-types/tsconfig.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/app/gulpfile.js

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)