@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 CHANGED
@@ -3,8 +3,7 @@
3
3
  Copyright (c) 2025 Michael Welter <me@mikinho.com>
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/@ynode/squirrellyify.svg)](https://www.npmjs.com/package/@ynode/squirrellyify)
6
- [![build](https://img.shields.io/github/actions/workflow/status/yammm/ynode-squirrellyify/your-workflow.yml)](https://github.com/yammm/ynode-squirrellyify/actions)
7
- [![license](https://img.shields.io/npm/l/@ynode/squirrellyify.svg)](https://github.com/yammm/ynode-squirrellyify/blob/main/LICENSE)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
@@ -271,5 +271,5 @@ async function squirrellyify(fastify, options = {}) {
271
271
 
272
272
  export default fp(squirrellyify, {
273
273
  fastify: "5.x",
274
- name: "squirrellyify",
274
+ name: "@ynode/squirrellyify",
275
275
  });