Skip to content

Commit

Permalink
Merge branch 'release/v1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Dec 18, 2021
2 parents 8533952 + 7bfc5a3 commit 1fd7096
Show file tree
Hide file tree
Showing 249 changed files with 6,179 additions and 12,783 deletions.
19 changes: 10 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
module.exports = {
extends: ["react-app", "plugin:import/typescript"],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "import"],
settings: {
"import/resolver": {
typescript: {}
}
},
extends: [
require.resolve("./packages/remix-eslint-config/index.js"),
require.resolve("./packages/remix-eslint-config/jest.js")
],
overrides: [
{
files: [
Expand All @@ -16,11 +12,16 @@ module.exports = {
rules: {
"no-restricted-globals": "off"
}
},
{
files: ["fixtures/gists-app/jest/**/*.js"],
env: {
"jest/globals": true
}
}
],
rules: {
"@typescript-eslint/consistent-type-imports": "error",

"import/order": [
"error",
{
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- dev

jobs:
format:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
paths-ignore:
- "docs/**"
- "**/README.md"
pull_request: {}

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.vscode
.DS_Store

Expand All @@ -9,6 +10,7 @@ yarn-error.log
/fixtures/cloudflare
/fixtures/test
/fixtures/my-remix-app
/fixtures/deno-app

.eslintcache
/.idea/
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
16 changes: 16 additions & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
- abereghici
- ahbruns
- ahmedeldessouki
- Alarid
- alexuxui
- arange
- arganaphangquestian
- ascorbic
- ashleyryan
- ashocean
- BasixKOR
- bmontalvo
- bogas04
- bruno-oliveira
- bsharrow
- CanRau
- chaance
- chenc041
Expand All @@ -21,10 +24,13 @@
- crismali
- davecalnan
- derekr
- developit
- dhargitai
- dokeet
- dokeet
- donavon
- dunglas
- dwt47
- edgesoft
- emzoumpo
- eps1lon
Expand All @@ -37,11 +43,13 @@
- goncy
- gonzoscript
- graham42
- GregBrimble
- hardingmatt
- HenryVogt
- hkan
- Holben888
- Hopsken
- IAmLuisJ
- ianduvall
- imzshh
- jacob-ebey
Expand All @@ -63,6 +71,7 @@
- leo
- levippaul
- lswest
- luispagarcia
- luistorres
- m0nica
- manzoorwanijk
Expand All @@ -77,8 +86,10 @@
- mochi-sann
- mohammadhosseinbagheri
- morinokami
- mskoroglu
- msutkowski
- nareshbhatia
- niconiahi
- nielsdb97
- nobeeakon
- nurul3101
Expand All @@ -94,6 +105,7 @@
- RossMcMillan92
- ryanflorence
- sean-roberts
- sergiodxa
- shumuu
- sidkh
- silvenon
Expand All @@ -107,8 +119,12 @@
- tombyrer
- tvanantwerp
- twhitbeck
- tylerbrostrom
- unhackit
- UsamaHameed
- veritem
- VictorPeralta
- weavdale
- yesmeck
- zachdtaylor
- zainfathoni
4 changes: 2 additions & 2 deletions docs/api/conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This file has a few build and development configuration options, but does not ac
```tsx filename=remix.config.js
module.exports = {
appDirectory: "app",
browserBuildDirectory: "public/build",
assetsBuildDirectory: "public/build",
devServerPort: 8002,
publicPath: "/build/",
serverBuildDirectory: "build",
Expand Down Expand Up @@ -65,7 +65,7 @@ exports.routes = async (defineRoutes) => {
}
```
### browserBuildDirectory
### assetsBuildDirectory
The path to the browser build, relative to remix.config.js. Defaults to "public/build". Should be deployed to static hosting.
Expand Down
Loading

0 comments on commit 1fd7096

Please sign in to comment.