Skip to content

Commit

Permalink
Merge branch 'canary' into global-css
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Sep 13, 2019
2 parents 58098af + 5c83684 commit 9684173
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Expand Up @@ -50,6 +50,8 @@ commands:
circleci tests glob "test/**/*.test.*" | \
circleci tests split
)
environment:
NEXT_TELEMETRY_DISABLED: '1'
test_browser:
parameters:
browser:
Expand All @@ -66,6 +68,7 @@ commands:
environment:
BROWSERSTACK: 'true'
BROWSER_NAME: << parameters.browser >>
NEXT_TELEMETRY_DISABLED: '1'
save_npm_token:
steps:
- run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Expand Up @@ -8,4 +8,4 @@ jobs:
- name: PR Stats
uses: zeit/next-stats-action@master
env:
PR_STATS_COMMENT_TOKEN: ${{ secrets.PR_STATS_COMMENT_TOKEN }}
COMMENT_ENDPOINT: https://next-stats.jjsweb.site/api/comment
3 changes: 3 additions & 0 deletions azure-pipelines.yml
@@ -1,6 +1,9 @@
pool:
vmImage: 'vs2017-win2016'

variables:
NEXT_TELEMETRY_DISABLED: '1'

strategy:
maxParallel: 10
matrix:
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -17,5 +17,5 @@
"registry": "https://registry.npmjs.org/"
}
},
"version": "9.0.6-canary.1"
"version": "9.0.6-canary.2"
}
2 changes: 1 addition & 1 deletion packages/create-next-app/package.json
@@ -1,6 +1,6 @@
{
"name": "create-next-app",
"version": "9.0.6-canary.1",
"version": "9.0.6-canary.2",
"keywords": [
"react",
"next",
Expand Down
2 changes: 1 addition & 1 deletion packages/next-bundle-analyzer/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/bundle-analyzer",
"version": "9.0.6-canary.1",
"version": "9.0.6-canary.2",
"main": "index.js",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/next-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "@next/mdx",
"version": "9.0.6-canary.1",
"version": "9.0.6-canary.2",
"main": "index.js",
"license": "MIT",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/next/README.md
Expand Up @@ -555,6 +555,8 @@ export default Home

```jsx
// pages/about.js
import Link from 'next/link'

function About() {
return (
<>
Expand Down
11 changes: 11 additions & 0 deletions packages/next/build/webpack-config.ts
Expand Up @@ -330,6 +330,17 @@ export default async function getBaseWebpackConfig(
try {
res = resolveRequest(request, context)
} catch (err) {
if (
request === 'react-ssr-prepass' &&
!config.experimental.ampBindInitData
) {
if (
context.replace(/\\/g, '/').includes('next-server/server')
) {
return callback(undefined, `commonjs ${request}`)
}
}

return callback()
}

Expand Down
2 changes: 1 addition & 1 deletion packages/next/package.json
@@ -1,6 +1,6 @@
{
"name": "next",
"version": "9.0.6-canary.1",
"version": "9.0.6-canary.2",
"description": "The React Framework",
"main": "./dist/server/next.js",
"license": "MIT",
Expand Down

0 comments on commit 9684173

Please sign in to comment.