@ynode/squirrellyify 1.0.1 → 1.0.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/README.md +2 -3
- package/package.json +4 -2
- package/src/plugin.js +1 -1
package/README.md
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
Copyright (c) 2025 Michael Welter <me@mikinho.com>
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@ynode/squirrellyify)
|
|
6
|
-
[](https://github.com/yammm/ynode-squirrellyify/blob/main/LICENSE)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
7
|
|
|
9
8
|
A simple and fast plugin for using the [Squirrelly](https://squirrelly.js.org/) template engine with
|
|
10
9
|
[Fastify](https://www.fastify.io/).
|
|
@@ -244,4 +243,4 @@ fastify.register(squirrellyify, {
|
|
|
244
243
|
|
|
245
244
|
## License
|
|
246
245
|
|
|
247
|
-
[MIT](./LICENSE)
|
|
246
|
+
This project is licensed under the [MIT Lisence](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ynode/squirrellyify",
|
|
3
|
-
"version": "1.0.1",
|
|
3
|
+
"version": "1.0.2+410637.v1.0.1-3-g33ede63",
|
|
4
4
|
"description": "Fastify plugin for rendering Squirrelly templates.",
|
|
5
5
|
"main": "src/plugin.js",
|
|
6
6
|
"type": "module",
|
|
@@ -59,7 +59,9 @@
|
|
|
59
59
|
"LICENSE"
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"fastify-plugin": "^5.1.0"
|
|
62
|
+
"fastify-plugin": "^5.1.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependency": {
|
|
63
65
|
"squirrelly": "^9.1.0"
|
|
64
66
|
}
|
|
65
67
|
}
|
package/src/plugin.js
CHANGED