@t8/serve 0.1.21 → 0.1.22

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,7 +37,7 @@ npx @t8/serve 3000 app public dist -b src/index.ts
37
37
  - index.css
38
38
  - index.html
39
39
  contains <script src="/dist/index.js"></script>
40
- contains <link rel="stylesheet" href="/index.css"></script>
40
+ contains <link rel="stylesheet" href="/index.css">
41
41
  - index.ts
42
42
  ```
43
43
 
@@ -77,7 +77,7 @@ webServer: {
77
77
  - index.tsx // imports "./App.tsx", "./index.css"
78
78
  - index.html
79
79
  contains <script src="/dist/index.js"></script>
80
- contains <link rel="stylesheet" href="/dist/index.css"></script>
80
+ contains <link rel="stylesheet" href="/dist/index.css">
81
81
  ```
82
82
 
83
83
  ```sh
@@ -124,7 +124,7 @@ server.close();
124
124
  - index.css
125
125
  - index.html
126
126
  contains <script src="/dist/index.js"></script>
127
- contains <link rel="stylesheet" href="/index.css"></script>
127
+ contains <link rel="stylesheet" href="/index.css">
128
128
  - index.ts
129
129
  ```
130
130
 
@@ -160,7 +160,7 @@ test.afterAll(() => {
160
160
  - index.tsx // imports "./App.tsx", "./index.css"
161
161
  - index.html
162
162
  contains <script src="/dist/index.js"></script>
163
- contains <link rel="stylesheet" href="/dist/index.css"></script>
163
+ contains <link rel="stylesheet" href="/dist/index.css">
164
164
  - index.ts
165
165
  - index.test.ts
166
166
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/serve",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Simple static file server + bundler, primarily for demo apps and tests, manual or automated",
5
5
  "keywords": [
6
6
  "node",