Skip to content

Commit 97e04ef

Browse files
committed
Merge branch 'netligraph-poc' of github.com:netlify/cli into netligraph-poc
2 parents 11d7487 + 80a45a7 commit 97e04ef

File tree

8 files changed

+56
-29
lines changed

8 files changed

+56
-29
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
99

10+
## [8.12.0](https://github.com/netlify/cli/compare/v8.11.1...v8.12.0) (2022-01-21)
11+
12+
13+
### Features
14+
15+
* **dev:** document how to disable browser auto launch ([#4106](https://github.com/netlify/cli/issues/4106)) ([b15f228](https://github.com/netlify/cli/commit/b15f228d50afbf19dead2bf335198c055621fd8d))
16+
17+
### [8.11.1](https://github.com/netlify/cli/compare/v8.11.0...v8.11.1) (2022-01-21)
18+
19+
20+
### Bug Fixes
21+
22+
* **deps:** update dependency @netlify/functions to ^0.11.0 ([#4105](https://github.com/netlify/cli/issues/4105)) ([6ddf42a](https://github.com/netlify/cli/commit/6ddf42a3c5a0769f93ea0b1840a611a535f63c34))
23+
* **deps:** update dependency @netlify/plugins-list to ^6.3.1 ([#4104](https://github.com/netlify/cli/issues/4104)) ([eff74d0](https://github.com/netlify/cli/commit/eff74d0e449c8b7eaf91ec6fdb87a74093d821cc))
24+
1025
## [8.11.0](https://github.com/netlify/cli/compare/v8.10.2...v8.11.0) (2022-01-20)
1126

1227

Diff for: docs/commands/dev.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ netlify dev
4242
netlify dev
4343
netlify dev -d public
4444
netlify dev -c "hugo server -w" --targetPort 1313
45+
BROWSER=none netlify dev # disable browser auto opening
4546
```
4647

4748
---

Diff for: docs/netlify-dev.md

+6
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ EXAMPLES
8585
$ netlify dev -c "hugo server -w" --targetPort 1313
8686
```
8787
88+
The command will automatically open your preferred browser to serve the application. You can customize this behaviour by using the `BROWSER` environment variable:
89+
90+
```bash
91+
$ BROWSER=none netlify dev # this will disable the auto opening of the browser
92+
```
93+
8894
## Live Share
8995
9096
To share your ongoing dev session with a coworker, just run Netlify Dev with a `--live` flag:

Diff for: npm-shrinkwrap.json

+16-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "netlify-cli",
33
"description": "Netlify command line tool",
4-
"version": "8.11.0",
4+
"version": "8.12.0",
55
"author": "Netlify Inc.",
66
"contributors": [
77
"Mathias Biilmann <[email protected]> (https://twitter.com/biilmann)",
@@ -82,7 +82,7 @@
8282
"@netlify/framework-info": "^9.0.0",
8383
"@netlify/local-functions-proxy": "^1.1.1",
8484
"@netlify/plugin-edge-handlers": "^3.0.4",
85-
"@netlify/plugins-list": "^6.3.0",
85+
"@netlify/plugins-list": "^6.3.1",
8686
"@netlify/routing-local-proxy": "^0.34.1",
8787
"@netlify/zip-it-and-ship-it": "^5.5.0",
8888
"@octokit/rest": "^18.0.0",
@@ -185,7 +185,7 @@
185185
},
186186
"devDependencies": {
187187
"@babel/preset-react": "^7.12.13",
188-
"@netlify/eslint-config-node": "^4.1.5",
188+
"@netlify/eslint-config-node": "^4.1.6",
189189
"ava": "^3.15.0",
190190
"c8": "^7.11.0",
191191
"eslint-plugin-sort-destructure-keys": "^1.3.5",

Diff for: src/commands/dev/dev.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,12 @@ const createDevCommand = (program) => {
360360
).hideHelp(),
361361
)
362362
.addOption(new Option('--graph', 'enable Netlify Graph support').hideHelp())
363-
.addExamples(['netlify dev', 'netlify dev -d public', 'netlify dev -c "hugo server -w" --targetPort 1313'])
363+
.addExamples([
364+
'netlify dev',
365+
'netlify dev -d public',
366+
'netlify dev -c "hugo server -w" --targetPort 1313',
367+
'BROWSER=none netlify dev # disable browser auto opening',
368+
])
364369
.action(dev)
365370
}
366371
module.exports = { createDevCommand }

Diff for: src/functions-templates/typescript/hello-world/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/functions-templates/typescript/hello-world/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"author": "Netlify",
1515
"license": "MIT",
1616
"dependencies": {
17-
"@netlify/functions": "^0.10.0",
17+
"@netlify/functions": "^0.11.0",
1818
"@types/node": "^14.0.0",
1919
"typescript": "^4.0.0"
2020
}

0 commit comments

Comments
 (0)