marko 5.35.2 → 5.35.3
Sign up to get free protection for your applications and to get access to all the features.
- package/browser-refresh.js +5 -0
- package/docs/marko-5-upgrade.md +1 -1
- package/package.json +3 -3
@@ -0,0 +1,5 @@
|
|
1
|
+
// This is a noop in Marko 5 and should eventually be removed.
|
2
|
+
// In Marko 5 `browser-refresh` is automatically enabled if you use the require hook, and
|
3
|
+
// browser refresh is running. We still expose this API to simplify the upgrade process from
|
4
|
+
// Marko 4 to Marko 5.
|
5
|
+
exports.enable = () => {};
|
package/docs/marko-5-upgrade.md
CHANGED
@@ -28,7 +28,7 @@ Run your application and tests to ensure your project is in a working state. The
|
|
28
28
|
|
29
29
|
```bash
|
30
30
|
# Update Marko, and related ecosystem dependencies
|
31
|
-
npx -y
|
31
|
+
npx -y npm-check-updates -u \
|
32
32
|
marko \
|
33
33
|
`# for webpack projects` \
|
34
34
|
@marko/webpack \
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "marko",
|
3
|
-
"version": "5.35.
|
3
|
+
"version": "5.35.3",
|
4
4
|
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
5
5
|
"keywords": [
|
6
6
|
"front-end",
|
@@ -65,8 +65,8 @@
|
|
65
65
|
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
|
66
66
|
},
|
67
67
|
"dependencies": {
|
68
|
-
"@marko/compiler": "^5.37.
|
69
|
-
"@marko/translator-default": "^6.0.
|
68
|
+
"@marko/compiler": "^5.37.3",
|
69
|
+
"@marko/translator-default": "^6.0.4",
|
70
70
|
"app-module-path": "^2.2.0",
|
71
71
|
"argly": "^1.2.0",
|
72
72
|
"browser-refresh-client": "1.1.4",
|