remix 0.19.3 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  To get started, open a new shell and run:
6
6
 
7
7
  ```sh
8
- $ npm init remix
8
+ $ npx create-remix@latest
9
9
  ```
10
10
 
11
11
  Then follow the prompts you see in your terminal.
package/browser/index.js CHANGED
@@ -1,4 +1,13 @@
1
- // Copyright © 2021 Remix Software Inc. All rights reserved.
1
+ /**
2
+ * remix v0.20.0
3
+ *
4
+ * Copyright (c) Remix Software Inc.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE.md file in the root directory of this source tree.
8
+ *
9
+ * @license MIT
10
+ */
2
11
  export * from './client';
3
12
  export * from './server';
4
13
  export * from './platform';
package/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- // Copyright © 2021 Remix Software Inc. All rights reserved.
2
1
  export * from "./client";
3
2
  export * from "./server";
4
3
  export * from "./platform";
package/index.js CHANGED
@@ -1,4 +1,13 @@
1
- // Copyright © 2021 Remix Software Inc. All rights reserved.
1
+ /**
2
+ * remix v0.20.0
3
+ *
4
+ * Copyright (c) Remix Software Inc.
5
+ *
6
+ * This source code is licensed under the MIT license found in the
7
+ * LICENSE.md file in the root directory of this source tree.
8
+ *
9
+ * @license MIT
10
+ */
2
11
  'use strict';
3
12
 
4
13
  Object.defineProperty(exports, '__esModule', { value: true });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "remix",
3
3
  "description": "A framework for building better websites",
4
- "version": "0.19.3",
4
+ "version": "0.20.0",
5
5
  "homepage": "https://remix.run",
6
6
  "main": "index.js",
7
7
  "browser": "browser/index.js",