Skip to content

Commit

Permalink
Merge branch 'next-6.0.0' into 8126-addon-a11y--allow-manual-run
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetanmaisse committed Jan 12, 2020
2 parents 1e30b75 + d216bb6 commit e368e57
Show file tree
Hide file tree
Showing 303 changed files with 150,621 additions and 2,090 deletions.
7 changes: 0 additions & 7 deletions .babelrc.js
Expand Up @@ -48,13 +48,6 @@ module.exports = {
test: withTests,
},
},
{
test: './examples/rax-kitchen-sink',
presets: [
['@babel/preset-env', { shippedProposals: true, useBuiltIns: 'usage', corejs: '3' }],
['babel-preset-rax', { development: process.env.BABEL_ENV === 'development' }],
],
},
{
test: './lib',
presets: [
Expand Down
3 changes: 2 additions & 1 deletion .eslintignore
Expand Up @@ -18,7 +18,8 @@ examples/cra-ts-kitchen-sink/*.json
examples/cra-ts-kitchen-sink/public/*
examples/cra-ts-essentials/*.json
examples/cra-ts-essentials/public/*

examples/rax-kitchen-sink/src/document/*
.yarn
!.remarkrc.js
!.babelrc.js
!.eslintrc.js
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
.yarn/releases/yarn-*.js linguist-generated=true
1 change: 1 addition & 0 deletions .github/autolabeler.yml
Expand Up @@ -15,6 +15,7 @@
'app: angular': ["app/angular/**"]
'app: polymer ': ["app/polymer/**"]
'app: preact': ["app/preact/**"]
'app: rax': ["app/rax/**"]
'app: react-native': ["app/react-native/**"]
'app: react': ["app/react/**"]
'app: vue': ["app/vue/**"]
Expand Down
1 change: 1 addition & 0 deletions .github/automention.yml
Expand Up @@ -4,6 +4,7 @@
'app: marko': ['nm123github']
'app: polymer': ['stijnkoopal', 'ndelangen']
'app: preact': ['BartWaardenburg']
'app: rax': ['SoloJiang']
'app: react-native': ['benoitdion', 'gongreg']
'app: react-native-server': ['benoitdion', 'gongreg']
'app: svelte': ['rixo', 'cam-stitt', 'plumpNation']
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
@@ -0,0 +1 @@
.yarn
18 changes: 17 additions & 1 deletion .vscode/launch.json
Expand Up @@ -17,6 +17,22 @@
"skipFiles": [
"<node_internals>/**"
]
},
}, {
"type": "node",
"request": "launch",
"name": "cli html",
"cwd": "${workspaceFolder}/lib/cli/stories",
"runtimeArgs": [
"--inspect-brk",
"${workspaceFolder}/lib/cli/bin/index.js",
"init",
"--type",
"html"
],
"port": 9229,
"skipFiles": [
"<node_internals>/**"
]
}
]
}

0 comments on commit e368e57

Please sign in to comment.