@remix-run/serve 1.0.4 → 1.0.5
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 +13 -0
- package/cli.js +1 -1
- package/index.js +1 -1
- package/package.json +10 -3
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Welcome to Remix!
|
|
2
|
+
|
|
3
|
+
[Remix](https://remix.run) is a web framework that helps you build better websites with React.
|
|
4
|
+
|
|
5
|
+
To get started, open a new shell and run:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
$ npx create-remix@latest
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Then follow the prompts you see in your terminal.
|
|
12
|
+
|
|
13
|
+
For more information about Remix, [visit remix.run](https://remix.run)!
|
package/cli.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remix-run/serve",
|
|
3
3
|
"description": "Production application server for Remix",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"repository":
|
|
4
|
+
"version": "1.0.5",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/remix-run/remix",
|
|
8
|
+
"directory": "packages/remix-serve"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/remix-run/remix/issues"
|
|
12
|
+
},
|
|
6
13
|
"bin": {
|
|
7
14
|
"remix-serve": "cli.js"
|
|
8
15
|
},
|
|
9
16
|
"dependencies": {
|
|
10
|
-
"@remix-run/express": "1.0.
|
|
17
|
+
"@remix-run/express": "1.0.5",
|
|
11
18
|
"compression": "^1.7.4",
|
|
12
19
|
"express": "^4.17.1",
|
|
13
20
|
"morgan": "^1.10.0"
|