marko 5.36.1 → 5.36.2
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/docs/cloudflare-workers.md +1 -1
- package/docs/fastify.md +1 -1
- package/docs/http.md +1 -1
- package/docs/koa.md +1 -1
- package/package.json +3 -3
|
@@ -29,4 +29,4 @@ async function handleRequest(request) {
|
|
|
29
29
|
### BYOB (Bring your own bundler)
|
|
30
30
|
|
|
31
31
|
For the large portion of Marko's API a bundler is required. The example code above assumes that Marko templates can be loaded in your environment.
|
|
32
|
-
Marko supports a number of bundlers, [take a look through our supported bundlers](
|
|
32
|
+
Marko supports a number of bundlers, [take a look through our supported bundlers](https://markojs.com/docs/bundler-integrations-overview/) and pick what works best for you.
|
package/docs/fastify.md
CHANGED
|
@@ -62,4 +62,4 @@ To know more about sending the data to the browser checkout:
|
|
|
62
62
|
### BYOB (Bring your own bundler)
|
|
63
63
|
|
|
64
64
|
For the large portion of Marko's API a bundler is required. The example code above assumes that Marko templates can be loaded in your environment.
|
|
65
|
-
Marko supports a number of bundlers, [take a look through our supported bundlers](
|
|
65
|
+
Marko supports a number of bundlers, [take a look through our supported bundlers](https://markojs.com/docs/bundler-integrations-overview/) and pick what works best for you.
|
package/docs/http.md
CHANGED
|
@@ -31,4 +31,4 @@ server.listen(port, () => {
|
|
|
31
31
|
### BYOB (Bring your own bundler)
|
|
32
32
|
|
|
33
33
|
For the large portion of Marko's API a bundler is required. The example code above assumes that Marko templates can be loaded in your environment.
|
|
34
|
-
Marko supports a number of bundlers, [take a look through our supported bundlers](
|
|
34
|
+
Marko supports a number of bundlers, [take a look through our supported bundlers](https://markojs.com/docs/bundler-integrations-overview/) and pick what works best for you.
|
package/docs/koa.md
CHANGED
|
@@ -32,4 +32,4 @@ app.listen(8080);
|
|
|
32
32
|
### BYOB (Bring your own bundler)
|
|
33
33
|
|
|
34
34
|
For the large portion of Marko's API a bundler is required. The example code above assumes that Marko templates can be loaded in your environment.
|
|
35
|
-
Marko supports a number of bundlers, [take a look through our supported bundlers](
|
|
35
|
+
Marko supports a number of bundlers, [take a look through our supported bundlers](https://markojs.com/docs/bundler-integrations-overview/) and pick what works best for you.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marko",
|
|
3
|
-
"version": "5.36.
|
|
3
|
+
"version": "5.36.2",
|
|
4
4
|
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"front-end",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@marko/compiler": "^5.38.
|
|
70
|
-
"@marko/translator-default": "^6.1.
|
|
69
|
+
"@marko/compiler": "^5.38.2",
|
|
70
|
+
"@marko/translator-default": "^6.1.1",
|
|
71
71
|
"app-module-path": "^2.2.0",
|
|
72
72
|
"argly": "^1.2.0",
|
|
73
73
|
"browser-refresh-client": "1.1.4",
|