Skip to content
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

AngularFire version 6 #2282

Merged
merged 38 commits into from
Jan 30, 2020
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4723972
First.
jamesdaniels Jun 20, 2019
7718780
Simplified build script
jamesdaniels Jun 21, 2019
287cee1
Wrapper data-dep index.d.ts was bad
jamesdaniels Jun 21, 2019
d274b36
Build.ts arg types
jamesdaniels Jun 21, 2019
c2a8972
Zap the old releasing file
jamesdaniels Jun 21, 2019
e31d8df
Getting testing working locally
jamesdaniels Jun 21, 2019
f075296
Linting
jamesdaniels Jun 21, 2019
a7a054a
Travis runner
jamesdaniels Jun 21, 2019
4ffb550
ChromeHeadless
jamesdaniels Jun 21, 2019
7d50f50
Clean up, call NG build rather than do so ourselves. Preserve output …
jamesdaniels Jun 21, 2019
a351b11
More cleanup, node tests
jamesdaniels Jun 22, 2019
7449d04
Test all
jamesdaniels Jun 22, 2019
c995642
Adding the Firestore specific project config back in
jamesdaniels Jun 26, 2019
06f171b
Anys on the specs, to tsc doesn't fail
jamesdaniels Jun 26, 2019
5ab4f64
Ditch hardcoded paths in build and fix up ng-add package.json stuff
jamesdaniels Jun 27, 2019
ce7412c
Putting together tests using the emulator
jamesdaniels Jul 14, 2019
8320416
First.
jamesdaniels Jan 8, 2020
b992309
Merged packagr
jamesdaniels Jan 8, 2020
aa8550a
Updating the tests
jamesdaniels Jan 9, 2020
349756e
Getting emulators wired up
jamesdaniels Jan 9, 2020
40bb84d
Drop the side-effect imports
jamesdaniels Jan 14, 2020
843c78e
Updating things
jamesdaniels Jan 14, 2020
cbc15e7
Bumping more things
jamesdaniels Jan 15, 2020
4c79567
Fixing AuthGuard
jamesdaniels Jan 15, 2020
ceb9a5c
Tests
jamesdaniels Jan 15, 2020
0acd89c
Docs and more
jamesdaniels Jan 16, 2020
3b79df8
Updating ng9 test
jamesdaniels Jan 16, 2020
91b4e94
Merged master and working on specs (#2298)
jamesdaniels Jan 28, 2020
c3b2f62
Auth, fix callback => observable shorthand
jamesdaniels Jan 28, 2020
054b7f1
Dropping the wrapper from the build script
jamesdaniels Jan 29, 2020
ce9487c
Merge branch 'master' into version_6_initial
jamesdaniels Jan 29, 2020
9a671d5
Drop wrong registerVersion again (merge stuffs)
jamesdaniels Jan 29, 2020
4a74efe
Updating the schematic builder
jamesdaniels Jan 29, 2020
eafa16e
Updating the schematic for the list depreciation
jamesdaniels Jan 29, 2020
b89a98c
Getting tests green and `providedIn: "any"`
jamesdaniels Jan 30, 2020
58cc382
Dropping firebase-node, database-depreciated, and the wrapper
jamesdaniels Jan 30, 2020
ad00106
drop test:universal for now and fix auth-guard
jamesdaniels Jan 30, 2020
74369e3
Make the auth guard pure
jamesdaniels Jan 30, 2020
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
Prev Previous commit
Next Next commit
Build.ts arg types
  • Loading branch information
jamesdaniels committed Jun 21, 2019
commit d274b36cdd4d27f2dd52ba4b3b7813e270e7b5cb
6 changes: 3 additions & 3 deletions tools/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ngPackagr } from 'ng-packagr';

const rootPackage = import(`${process.cwd()}/package.json`);

async function replaceVersions(path) {
async function replaceVersions(path: string) {
const root = await rootPackage;
var pkg = await import(path);
Object.keys(pkg.peerDependencies).forEach(peer => {
Expand All @@ -16,7 +16,7 @@ async function replaceVersions(path) {
return writeFile(path, JSON.stringify(pkg, null, 2));
}

function spawnPromise(command, args) {
function spawnPromise(command: string, args: string[]) {
return new Promise(resolve => {
const cmd = spawn(command, args);
cmd.on('close', resolve);
Expand Down Expand Up @@ -45,7 +45,7 @@ async function replaceDynamicImportsForUMD() {
]);
}

async function measure(module) {
async function measure(module: string) {
const path = `${process.cwd()}/dist/packages-dist/bundles/${module}.umd.js`;
const file = await readFile(path);
const gzip = prettySize(gzipSync(file), true);
Expand Down