Skip to content

Commit

Permalink
add motto
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Apr 14, 2024
1 parent 63ba6b2 commit 600143f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/lemon-cycles-tan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ryanatkn/gro": patch
---

add optional `motto` property to `Package_Json`
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

<img src="static/favicon.png" align="right" width="192" height="192">

> task runner and toolkit extending SvelteKit - [gro.ryanatkn.com](https://gro.ryanatkn.com)
> task runner and toolkit extending SvelteKit 🌰 generate, run, optimize
[gro.ryanatkn.com](https://gro.ryanatkn.com/)

[`npm i -D @ryanatkn/gro`](https://www.npmjs.com/package/@ryanatkn/gro)

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "@ryanatkn/gro",
"version": "0.115.0",
"description": "task runner and toolkit extending SvelteKit",
"motto": "generate, run, optimize",
"icon": "🌰",
"public": true,
"bin": {
Expand Down
1 change: 1 addition & 0 deletions src/lib/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const package_json = {
name: '@ryanatkn/gro',
version: '0.115.0',
description: 'task runner and toolkit extending SvelteKit',
motto: 'generate, run, optimize',
icon: '🌰',
public: true,
bin: {gro: 'dist/gro.js'},
Expand Down
1 change: 1 addition & 0 deletions src/lib/package_json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export const Package_Json = z.intersection(
private: z.boolean({description: 'disallow npm publish'}).optional(),

description: z.string().optional(),
motto: z.string().optional(),
license: z.string().optional(),
homepage: Url.optional(),
repository: z.union([z.string(), Url, Package_Json_Repository]).optional(),
Expand Down

0 comments on commit 600143f

Please sign in to comment.