@stephansama/catppuccin-xsl 1.0.0 → 1.1.0

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.
@@ -4,7 +4,7 @@ Based on: https://github.com/genmon/aboutfeeds/blob/main/tools/pretty-feed-v3.xs
4
4
 
5
5
  This version is based on catppuccin's frappe
6
6
 
7
- @stephansama/catppuccin-xsl v1.0.0 - 2025
7
+ @stephansama/catppuccin-xsl v1.1.0 - 2025
8
8
 
9
9
  --><xsl:stylesheet version="3.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
10
10
  <xsl:output encoding="UTF-8" indent="yes" method="html" version="1.0"></xsl:output>
@@ -4,7 +4,7 @@ Based on: https://github.com/genmon/aboutfeeds/blob/main/tools/pretty-feed-v3.xs
4
4
 
5
5
  This version is based on catppuccin&#x27;s macchiato
6
6
 
7
- @stephansama/catppuccin-xsl v1.0.0 - 2025
7
+ @stephansama/catppuccin-xsl v1.1.0 - 2025
8
8
 
9
9
  --><xsl:stylesheet version="3.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
10
10
  <xsl:output encoding="UTF-8" indent="yes" method="html" version="1.0"></xsl:output>
@@ -4,7 +4,7 @@ Based on: https://github.com/genmon/aboutfeeds/blob/main/tools/pretty-feed-v3.xs
4
4
 
5
5
  This version is based on catppuccin&#x27;s mocha
6
6
 
7
- @stephansama/catppuccin-xsl v1.0.0 - 2025
7
+ @stephansama/catppuccin-xsl v1.1.0 - 2025
8
8
 
9
9
  --><xsl:stylesheet version="3.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
10
10
  <xsl:output encoding="UTF-8" indent="yes" method="html" version="1.0"></xsl:output>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stephansama/catppuccin-xsl",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Catppuccin styles for various xsl formats",
5
5
  "keywords": [
6
6
  "catppuccin-xsl"
@@ -32,29 +32,30 @@
32
32
  "files": [
33
33
  "dist"
34
34
  ],
35
- "config": {
36
- "outputFolder": "./dist"
37
- },
38
- "dependencies": {},
39
35
  "devDependencies": {
40
36
  "@catppuccin/palette": "1.7.1",
41
37
  "@types/minify": "9.1.4",
42
38
  "handlebars": "4.7.8",
43
- "minify": "14.0.0"
39
+ "minify": "14.0.0",
40
+ "tsx": "4.21.0",
41
+ "vite-tsconfig-paths": "^5.1.4",
42
+ "zod": "4.0.15",
43
+ "@stephansama/typed-templates": "1.1.0"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public",
47
47
  "provenance": true
48
48
  },
49
49
  "scripts": {
50
+ "audit": "tsx ./templates/schema.ts",
50
51
  "build": "pnpm run --sequential \"/^build:.*/\"",
51
52
  "postbuild": "publint",
52
- "build:opml": "node ./scripts/opml.js",
53
- "build:rss": "node ./scripts/rss.js",
54
- "build:sitemap": "node ./scripts/sitemap.js",
53
+ "build:opml": "tsx ./src/opml.ts",
54
+ "build:rss": "tsx ./src/rss.ts",
55
+ "build:sitemap": "tsx ./src/sitemap.ts",
55
56
  "dev": "pnpm run --parallel \"/^dev:.*/\"",
56
- "dev:opml": "node --watch ./scripts/opml.js",
57
- "dev:rss": "node --watch ./scripts/rss.js",
58
- "dev:sitemap": "node --watch ./scripts/sitemap.js"
57
+ "dev:opml": "node --watch ./src/opml.ts",
58
+ "dev:rss": "node --watch ./src/rss.ts",
59
+ "dev:sitemap": "node --watch ./src/sitemap.ts"
59
60
  }
60
61
  }