Skip to content

Commit

Permalink
Merge branch 'dev' into feat/support-import-csv-file
Browse files Browse the repository at this point in the history
  • Loading branch information
kayac-chang committed Aug 4, 2022
2 parents 7c66f56 + c0cf73a commit 2f8b6cd
Show file tree
Hide file tree
Showing 1,449 changed files with 38,772 additions and 72,238 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
31 changes: 31 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.0.0/schema.json",
"changelog": ["@remix-run/changelog-github", { "repo": "remix-run/remix" }],
"commit": false,
"fixed": [
[
"create-remix",
"remix",
"@remix-run/dev",
"@remix-run/eslint-config",
"@remix-run/react",
"@remix-run/serve",

"@remix-run/server-runtime",
"@remix-run/cloudflare",
"@remix-run/node",

"@remix-run/deno",
"@remix-run/cloudflare-pages",
"@remix-run/cloudflare-workers",
"@remix-run/express",
"@remix-run/netlify",
"@remix-run/vercel"
]
],
"linked": [],
"access": "public",
"baseBranch": "dev",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/four-ladybugs-wait.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@remix-run/dev": patch
---

Allow importing `.sql` files as text
16 changes: 16 additions & 0 deletions .changeset/great-pumas-act.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
"@remix-run/netlify": minor
"@remix-run/server-runtime": minor
---

Type safety for load context.

Change `AppLoadContext` to be an interface mapping `string` to `unknown`, allowing users to extend it via:

```ts
declare module "@remix-run/server-runtime" {
interface AppLoadContext {
// add custom properties here!
}
}
```
5 changes: 5 additions & 0 deletions .changeset/nasty-cars-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@remix-run/react": patch
---

React 18 gets more strict with types, this adds a runtime cast to a string for the `<title>` tag value.
9 changes: 8 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@
**/tests/__snapshots/
**/node_modules/
!.eslintrc.js
templates/deno
.tmp
/playground
**/__tests__/fixtures
**/__tests__/**/*/fixtures

# Deno
integration/helpers/deno-template
packages/remix-deno
templates/deno
8 changes: 8 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,12 @@ module.exports = {
"plugin:markdown/recommended",
],
plugins: ["markdown"],
overrides: [
{
files: ["rollup.config.js"],
rules: {
"import/no-extraneous-dependencies": 0,
},
},
],
};
18 changes: 18 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,21 @@ Closes: #

- [ ] Docs
- [ ] Tests

Testing Strategy:

<!--
Please explain how you tested this. For example:
> This test covers this code: <link to test>
Or
> I opened up my windows machine and ran this script:
>
> ```
> npx create-remix@0.0.0-experimental-7e420ee3 --template remix my-test
> cd my-test
> npm run dev
> ```
-->
196 changes: 0 additions & 196 deletions .github/workflows/deployment-test.yml

This file was deleted.

Loading

0 comments on commit 2f8b6cd

Please sign in to comment.