Skip to content

Commit 14c2c4a

Browse files
author
Josh Crowther
authored
Build Refactoring (#653)
* Removing gulp dependency from the default build path * Updating .gitignore * @firebase/util Build Refactor * @firebase/testing Build Refactor * @firebase/template Build Refactor * @firebase/storage Build Refactor * @firebase/polyfill Build Refactor * @firebase/messaging Build Refactor * @firebase/logger Build Refactor * @firebase/functions Build Refactor * @firebase/database Build Refactor * @firebase/app Build Refactor * @firebase/firestore Build Refactor * @firebase/app version replace * Fix script rename in @firebase/util * [AUTOMATED]: Prettier Code Styling * [AUTOMATED]: License Headers * Remove unnecessary build artifacts * Removing unused test files from types-* packages * [AUTOMATED]: Prettier Code Styling * firebase Package Build Refactor * [AUTOMATED]: Prettier Code Styling * Refactor peerDependencies to properly reference the entire major 0 * Change NPM Publish Concurrency * Add sourcemaps * Refactor messaging named export * Add try-catch block for firebase-app error * Add package-lock.json to the .gitignore * Adding a package.json to remove duplicate .d.ts
1 parent aeed607 commit 14c2c4a

Some content is hidden

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

71 files changed

+904
-3784
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

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)