-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Node.js package.json templates for func init(#2853)
- Loading branch information
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
8 changes: 5 additions & 3 deletions
8
src/Azure.Functions.Cli/StaticResources/javascriptPackage.json
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,9 +1,11 @@ | ||
{ | ||
"name": "", | ||
"version": "", | ||
"version": "1.0.0", | ||
"description": "", | ||
"scripts" : { | ||
"scripts": { | ||
"start": "func start", | ||
"test": "echo \"No tests yet...\"" | ||
}, | ||
"author": "" | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} |
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,19 +1,17 @@ | ||
{ | ||
"name": "", | ||
"version": "", | ||
"scripts" : { | ||
"version": "1.0.0", | ||
"description": "", | ||
"scripts": { | ||
"build": "tsc", | ||
"build:production": "npm run prestart && npm prune --production", | ||
"watch": "tsc --w", | ||
"prestart": "npm run build && func extensions install", | ||
"start:host": "func start", | ||
"start": "npm-run-all --parallel start:host watch", | ||
"watch": "tsc -w", | ||
"prestart": "npm run build", | ||
"start": "func start", | ||
"test": "echo \"No tests yet...\"" | ||
}, | ||
"description": "", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@azure/functions": "^1.0.1-beta1", | ||
"npm-run-all": "^4.1.5", | ||
"typescript": "^3.3.3" | ||
"@azure/functions": "^2.0.0", | ||
"typescript": "^4.0.0" | ||
} | ||
} |