Skip to content

Build Refactoring #653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Apr 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9d851bc
Removing gulp dependency from the default build path
jshcrowthe Apr 9, 2018
ae83ac4
Updating .gitignore
jshcrowthe Apr 9, 2018
c7ff547
@firebase/util Build Refactor
jshcrowthe Apr 9, 2018
016b870
@firebase/testing Build Refactor
jshcrowthe Apr 9, 2018
6137eab
@firebase/template Build Refactor
jshcrowthe Apr 9, 2018
eaf6deb
@firebase/storage Build Refactor
jshcrowthe Apr 9, 2018
8ec8023
@firebase/polyfill Build Refactor
jshcrowthe Apr 9, 2018
900f567
@firebase/messaging Build Refactor
jshcrowthe Apr 9, 2018
4717ad5
@firebase/logger Build Refactor
jshcrowthe Apr 9, 2018
741f98a
@firebase/functions Build Refactor
jshcrowthe Apr 9, 2018
f833f4a
@firebase/database Build Refactor
jshcrowthe Apr 9, 2018
fdd4440
@firebase/app Build Refactor
jshcrowthe Apr 9, 2018
36a277c
@firebase/firestore Build Refactor
jshcrowthe Apr 9, 2018
2a9bdf9
@firebase/app version replace
jshcrowthe Apr 9, 2018
d32a968
Fix script rename in @firebase/util
jshcrowthe Apr 9, 2018
e2dd7e6
[AUTOMATED]: Prettier Code Styling
jshcrowthe Apr 9, 2018
2786c8f
[AUTOMATED]: License Headers
jshcrowthe Apr 9, 2018
5994f46
Remove unnecessary build artifacts
jshcrowthe Apr 9, 2018
fa8143b
Removing unused test files from types-* packages
jshcrowthe Apr 9, 2018
05dd98c
[AUTOMATED]: Prettier Code Styling
jshcrowthe Apr 9, 2018
1ee406a
firebase Package Build Refactor
jshcrowthe Apr 9, 2018
12708b3
[AUTOMATED]: Prettier Code Styling
jshcrowthe Apr 9, 2018
ea12a04
Refactor peerDependencies to properly reference the entire major 0
jshcrowthe Apr 10, 2018
d9bffa8
Change NPM Publish Concurrency
jshcrowthe Apr 10, 2018
3940579
Add sourcemaps
jshcrowthe Apr 10, 2018
657ef61
Refactor messaging named export
jshcrowthe Apr 10, 2018
ba806e7
Add try-catch block for firebase-app error
jshcrowthe Apr 10, 2018
98499a0
Add package-lock.json to the .gitignore
jshcrowthe Apr 10, 2018
c198f9a
Adding a package.json to remove duplicate .d.ts
jshcrowthe Apr 10, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 66 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ dist
.awcache
/config/project.json

# Misc
*.log

# OS Specific Files
.DS_Store

Expand All @@ -15,6 +12,70 @@ dist
.vscode
*.iml

# Coverage
.nyc_output
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next

# rollup-plugin-typescript2 cache
.rpt2_cache/

# NPM Lockfiles
package-lock.json
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@
"dependency-graph": "^0.7.0",
"firebase-tools": "^3.17.4",
"glob": "^7.1.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.1",
"husky": "^0.14.3",
"inquirer": "^5.1.0",
"istanbul-instrumenter-loader": "^3.0.0",
Expand Down
5 changes: 1 addition & 4 deletions packages/app-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@
"author": "Firebase <[email protected]> (https://firebase.google.com/)",
"license": "Apache-2.0",
"scripts": {
"test": "tsc"
"test": "echo 'Types package, skipping tests'"
},
"files": [
"index.d.ts",
"private.d.ts"
],
"devDependencies": {
"typescript": "^2.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/firebase/firebase-js-sdk/tree/master/packages/app-types"
Expand Down
99 changes: 0 additions & 99 deletions packages/app-types/test/default.test.ts

This file was deleted.

99 changes: 0 additions & 99 deletions packages/app-types/test/singleExport.test.ts

This file was deleted.

9 changes: 0 additions & 9 deletions packages/app-types/tsconfig.json

This file was deleted.

45 changes: 0 additions & 45 deletions packages/app/gulpfile.js

This file was deleted.

Loading