-
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.
- Loading branch information
0 parents
commit 9998641
Showing
34 changed files
with
19,660 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.tmp | ||
node_modules | ||
|
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 |
---|---|---|
@@ -0,0 +1,143 @@ | ||
// Available variables which can be used inside of strings. | ||
// ${workspaceRoot}: the root folder of the team | ||
// ${file}: the current opened file | ||
// ${fileBasename}: the current opened file's basename | ||
// ${fileDirname}: the current opened file's dirname | ||
// ${fileExtname}: the current opened file's extension | ||
// ${cwd}: the current working directory of the spawned process | ||
|
||
{ | ||
"version": "0.1.0", | ||
"command": "npm", | ||
"isShellCommand": true, | ||
"args": ["run"], | ||
|
||
"tasks": [ | ||
{ | ||
"taskName": "build", | ||
"isBuildCommand": true, | ||
"showOutput": "silent", | ||
"problemMatcher": "$tsc" | ||
}, | ||
{ | ||
"taskName": "test", | ||
"isTestCommand": true, | ||
"showOutput": "silent" | ||
} | ||
] | ||
} | ||
|
||
// Uncomment the following section to use jake to build a workspace | ||
// cloned from https://github.com/Microsoft/TypeScript.git | ||
/* | ||
{ | ||
"version": "0.1.0", | ||
// Task runner is jake | ||
"command": "jake", | ||
// Need to be executed in shell / cmd | ||
"isShellCommand": true, | ||
"showOutput": "silent", | ||
"tasks": [ | ||
{ | ||
// TS build command is local. | ||
"taskName": "local", | ||
// Make this the default build command. | ||
"isBuildCommand": true, | ||
// Show the output window only if unrecognized errors occur. | ||
"showOutput": "silent", | ||
// Use the redefined Typescript output problem matcher. | ||
"problemMatcher": [ | ||
"$tsc" | ||
] | ||
} | ||
] | ||
} | ||
*/ | ||
|
||
// Uncomment the section below to use msbuild and generate problems | ||
// for csc, cpp, tsc and vb. The configuration assumes that msbuild | ||
// is available on the path and a solution file exists in the | ||
// workspace folder root. | ||
/* | ||
{ | ||
"version": "0.1.0", | ||
"command": "msbuild", | ||
"args": [ | ||
// Ask msbuild to generate full paths for file names. | ||
"/property:GenerateFullPaths=true" | ||
], | ||
"taskSelector": "/t:", | ||
"showOutput": "silent", | ||
"tasks": [ | ||
{ | ||
"taskName": "build", | ||
// Show the output window only if unrecognized errors occur. | ||
"showOutput": "silent", | ||
// Use the standard MS compiler pattern to detect errors, warnings | ||
// and infos in the output. | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} | ||
*/ | ||
|
||
// Uncomment the following section to use msbuild which compiles Typescript | ||
// and less files. | ||
/* | ||
{ | ||
"version": "0.1.0", | ||
"command": "msbuild", | ||
"args": [ | ||
// Ask msbuild to generate full paths for file names. | ||
"/property:GenerateFullPaths=true" | ||
], | ||
"taskSelector": "/t:", | ||
"showOutput": "silent", | ||
"tasks": [ | ||
{ | ||
"taskName": "build", | ||
// Show the output window only if unrecognized errors occur. | ||
"showOutput": "silent", | ||
// Use the standard MS compiler pattern to detect errors, warnings | ||
// and infos in the output. | ||
"problemMatcher": [ | ||
"$msCompile", | ||
"$lessCompile" | ||
] | ||
} | ||
] | ||
} | ||
*/ | ||
// A task runner example that defines a problemMatcher inline instead of using | ||
// a predefined one. | ||
/* | ||
{ | ||
"version": "0.1.0", | ||
"command": "tsc", | ||
"isShellCommand": true, | ||
"args": ["HelloWorld.ts"], | ||
"showOutput": "silent", | ||
"problemMatcher": { | ||
// The problem is owned by the typescript language service. Ensure that the problems | ||
// are merged with problems produced by Visual Studio's language service. | ||
"owner": "typescript", | ||
// The file name for reported problems is relative to the current working directory. | ||
"fileLocation": ["relative", "${cwd}"], | ||
// The actual pattern to match problems in the output. | ||
"pattern": { | ||
// The regular expression. Matches HelloWorld.ts(2,10): error TS2339: Property 'logg' does not exist on type 'Console'. | ||
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(TS\\d+)\\s*:\\s*(.*)$", | ||
// The match group that denotes the file containing the problem. | ||
"file": 1, | ||
// The match group that denotes the problem location. | ||
"location": 2, | ||
// The match group that denotes the problem's severity. Can be omitted. | ||
"severity": 3, | ||
// The match group that denotes the problem code. Can be omitted. | ||
"code": 4, | ||
// The match group that denotes the problem's message. | ||
"message": 5 | ||
} | ||
} | ||
} | ||
*/ |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# firebase-functions | ||
|
||
The `firebase-functions` package provides an SDK for defining Firebase Functions. | ||
|
||
## Installation | ||
|
||
In your Firebase project's `functions` directory, run: | ||
|
||
npm install firebase-functions | ||
|
||
## Usage | ||
|
||
```js | ||
// functions/index.js | ||
var functions = require('firebase-functions'); | ||
var notifyUsers = require('./notify-users'); | ||
|
||
exports.newPost = functions.database() | ||
.path('/posts/{postId}') | ||
.on('write', function(event) { | ||
// only execute function on creation | ||
if (!event.data.prior().exists()) { | ||
notifyUsers(event.data.val()); | ||
} | ||
}); | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.