remix 0.18.2 → 0.19.1

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/browser/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright © 2021 React Training LLC. All rights reserved.
1
+ // Copyright © 2021 Remix Software Inc. All rights reserved.
2
2
  export * from './client';
3
3
  export * from './server';
4
4
  export * from './platform';
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright © 2021 React Training LLC. All rights reserved.
1
+ // Copyright © 2021 Remix Software Inc. All rights reserved.
2
2
  export * from "./client";
3
3
  export * from "./server";
4
4
  export * from "./platform";
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright © 2021 React Training LLC. All rights reserved.
1
+ // Copyright © 2021 Remix Software Inc. All rights reserved.
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -12,24 +12,18 @@ var platform = require('./platform');
12
12
  Object.keys(client).forEach(function (k) {
13
13
  if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
14
14
  enumerable: true,
15
- get: function () {
16
- return client[k];
17
- }
15
+ get: function () { return client[k]; }
18
16
  });
19
17
  });
20
18
  Object.keys(server).forEach(function (k) {
21
19
  if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
22
20
  enumerable: true,
23
- get: function () {
24
- return server[k];
25
- }
21
+ get: function () { return server[k]; }
26
22
  });
27
23
  });
28
24
  Object.keys(platform).forEach(function (k) {
29
25
  if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
30
26
  enumerable: true,
31
- get: function () {
32
- return platform[k];
33
- }
27
+ get: function () { return platform[k]; }
34
28
  });
35
29
  });
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.18.2",
4
+ "version": "0.19.1",
5
5
  "homepage": "https://remix.run",
6
6
  "main": "index.js",
7
7
  "browser": "browser/index.js",