firebase-tools 11.24.0 → 11.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,7 @@ function readCommonTemplates() {
24
24
  extSpecTemplate: fs.readFileSync(path.join(TEMPLATE_ROOT, "extension.yaml"), "utf8"),
25
25
  preinstallTemplate: fs.readFileSync(path.join(TEMPLATE_ROOT, "PREINSTALL.md"), "utf8"),
26
26
  postinstallTemplate: fs.readFileSync(path.join(TEMPLATE_ROOT, "POSTINSTALL.md"), "utf8"),
27
- changelogTemplate: fs.readFileSync(path.join(TEMPLATE_ROOT, "CHANGELOG.md"), "utf8"),
27
+ changelogTemplate: fs.readFileSync(path.join(TEMPLATE_ROOT, "CL-template.md"), "utf8"),
28
28
  };
29
29
  }
30
30
  exports.command = new command_1.Command("ext:dev:init")
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "firebase-tools",
3
- "version": "11.24.0",
3
+ "version": "11.24.1",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "firebase-tools",
9
- "version": "11.24.0",
9
+ "version": "11.24.1",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@google-cloud/pubsub": "^3.0.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firebase-tools",
3
- "version": "11.24.0",
3
+ "version": "11.24.1",
4
4
  "description": "Command-Line Interface for Firebase",
5
5
  "main": "./lib/index.js",
6
6
  "bin": {
@@ -0,0 +1,2 @@
1
+ ## Version 0.0.1
2
+ - Initial Version
@@ -2,12 +2,12 @@
2
2
  # To get started, simply uncomment the below code or create your own.
3
3
  # Deploy with `firebase deploy`
4
4
 
5
- from firebase_functions import https
5
+ from firebase_functions import https_fn
6
6
  from firebase_admin import initialize_app
7
7
 
8
8
  # initialize_app()
9
9
  #
10
10
  #
11
- # @https.on_request()
12
- # def on_request_example(req: https.Request) -> https.Response:
13
- # return https.Response("Hello world!")
11
+ # @https_fn.on_request()
12
+ # def on_request_example(req: https_fn.Request) -> https_fn.Response:
13
+ # return https_fn.Response("Hello world!")