mikser-io-live 3.0.0 → 4.0.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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +22 -22
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # mikser-io-live
2
2
 
3
- Live-reload dev server for [Mikser](https://github.com/almero-digital-marketing/mikser-io). Wraps [alive-server](https://github.com/davidmoshal/alive-server) and serves the configured `outputFolder`, auto-refreshing browsers as Mikser regenerates files.
3
+ Live-reload dev server for [Mikser](https://github.com/almero-digital-marketing/mikser-io). Wraps [alive-server](https://www.npmjs.com/package/alive-server) and serves the configured `outputFolder`, auto-refreshing browsers as Mikser regenerates files.
4
+
5
+ The lighter alternative to `mikser --server` when all you want is "save a file → browser refreshes." Pair with `mikser --watch` for the classic SSG dev loop. If you also need API endpoints, an admin UI, or other plugins that need a shared Express app, use `mikser --server` instead.
4
6
 
5
7
  ## Install
6
8
 
package/package.json CHANGED
@@ -1,24 +1,24 @@
1
1
  {
2
- "name": "mikser-io-live",
3
- "version": "3.0.0",
4
- "description": "",
5
- "main": "index.js",
6
- "type": "module",
7
- "scripts": {},
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/almero-digital-marketing/mikser-io-live.git"
11
- },
12
- "author": "",
13
- "license": "MIT",
14
- "bugs": {
15
- "url": "https://github.com/almero-digital-marketing/mikser-io-live/issues"
16
- },
17
- "homepage": "https://github.com/almero-digital-marketing/mikser-io-live#readme",
18
- "peerDependencies": {
19
- "mikser-io": "^6.0.0"
20
- },
21
- "dependencies": {
22
- "alive-server": "^1.3.0"
23
- }
2
+ "name": "mikser-io-live",
3
+ "version": "4.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "scripts": {},
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/almero-digital-marketing/mikser-io-live.git"
11
+ },
12
+ "author": "",
13
+ "license": "MIT",
14
+ "bugs": {
15
+ "url": "https://github.com/almero-digital-marketing/mikser-io-live/issues"
16
+ },
17
+ "homepage": "https://github.com/almero-digital-marketing/mikser-io-live#readme",
18
+ "peerDependencies": {
19
+ "mikser-io": "^7.0.0"
20
+ },
21
+ "dependencies": {
22
+ "alive-server": "^1.3.0"
23
+ }
24
24
  }