This commit is contained in:
Christopher Anderson 2018-01-24 17:12:14 -08:00 коммит произвёл GitHub
Родитель d5aed12aa9
Коммит 8a586d68ed
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -10,8 +10,6 @@ Whenever an Azure Function App is recreated on demand (a so called "cold start")
A javascript module bundler (webpack) is used to place all the modules in a single file. The Function `functions.json` files are then modified so this bundle is used rather than the separate modules files. Magic!
:construction: This project is experimental; use with caution and be prepared for breaking changes :construction:
## How to run
In the Function App directory:

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "azure-functions-pack",
"version": "0.4.1",
"version": "1.0.0",
"description": "azure-functions-pack",
"license": "MIT",
"repository": "https://github.com/Azure/azure-functions-pack",

Просмотреть файл

@ -8,7 +8,7 @@ import { ConfigLoader, IFuncpackConfig } from "./utils";
async function runCli() {
const p = program
.version("0.4.1")
.version("1.0.0")
.option("-d, --debug", "Emits debug messages");
p.command("unpack <path>")