-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Swap tsconfig strategy so the test config is primary 2. Bump dependency on firebase-admin 3. Fix linter issue in cloud-functions.ts 4. Fix ordering of code in analytics.ts to be consistent with other providers. 5. Add .tgz to npmignore so we won't inception a releases 6. Update description and keyword for package 1. Swap tsconfig strategy so the test config is primary 2. Bump dependency on firebase-admin 3. Fix linter issue in cloud-functions.ts 4. Fix ordering of code in analytics.ts to be consistent with other providers. 5. Add .tgz to npmignore so we won't inception a releases 6. Update description and keyword for package
- Loading branch information
Showing
6 changed files
with
124 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ spec | |
# TODO(rjh) add back once testing isn't just a joke | ||
testing | ||
lib/testing.* | ||
*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
{ | ||
"compilerOptions": { | ||
"declaration": true, | ||
"lib": ["es6", "es2015.promise"], | ||
"module": "commonjs", | ||
"noImplicitAny": false, | ||
"outDir": "lib", | ||
"stripInternal": true, | ||
"outDir": ".tmp", | ||
"sourceMap": true, | ||
"target": "es5", | ||
"typeRoots": [ | ||
"node_modules/@types" | ||
] | ||
}, | ||
"files": [ | ||
"src/index.ts", | ||
"src/testing.ts" | ||
"include": [ | ||
"src/**/*.ts", | ||
"spec/**/*.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
{ | ||
"compilerOptions": { | ||
"declaration": true, | ||
"lib": ["es6", "es2015.promise"], | ||
"module": "commonjs", | ||
"noImplicitAny": false, | ||
"outDir": ".tmp", | ||
"sourceMap": true, | ||
"outDir": "lib", | ||
"stripInternal": true, | ||
"target": "es5", | ||
"typeRoots": [ | ||
"node_modules/@types" | ||
] | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"spec/**/*.ts" | ||
"files": [ | ||
"src/index.ts", | ||
"src/testing.ts" | ||
] | ||
} |