jsonresume-theme-catppuccin 1.0.1
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/.autorc +10 -0
- package/.github/workflows/publish.yml +36 -0
- package/.nvmrc +1 -0
- package/CHANGELOG.md +11 -0
- package/LICENSE +21 -0
- package/README.md +1 -0
- package/index.js +1 -0
- package/package.json +27 -0
package/.autorc
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: publish
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
branches: [main]
|
|
5
|
+
push:
|
|
6
|
+
branches: [main]
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
env:
|
|
9
|
+
DO_NOT_TRACK: 1
|
|
10
|
+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
11
|
+
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
|
15
|
+
issues: write
|
|
16
|
+
pull-requests: write
|
|
17
|
+
concurrency: ${{github.workflow}}-${{github.ref}}
|
|
18
|
+
jobs:
|
|
19
|
+
ci:
|
|
20
|
+
name: CI
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v5
|
|
24
|
+
with:
|
|
25
|
+
fetch-depth: 0
|
|
26
|
+
ref: ${{ github.head_ref }}
|
|
27
|
+
- uses: pnpm/action-setup@v4
|
|
28
|
+
- uses: actions/setup-node@v4
|
|
29
|
+
with:
|
|
30
|
+
cache: "pnpm"
|
|
31
|
+
node-version-file: ".nvmrc"
|
|
32
|
+
registry-url: "https://registry.npmjs.org"
|
|
33
|
+
- name: 📦 Installing dependencies
|
|
34
|
+
run: pnpm install
|
|
35
|
+
- name: ↗️ Create release
|
|
36
|
+
run: pnpm run release
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v25.6.1
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# v1.0.1 (Sun Mar 01 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- chore: added auth token ([@stephansama](https://github.com/stephansama))
|
|
6
|
+
- chore: renamed to workflows ([@stephansama](https://github.com/stephansama))
|
|
7
|
+
- chore: initial commit ([@stephansama](https://github.com/stephansama))
|
|
8
|
+
|
|
9
|
+
#### Authors: 1
|
|
10
|
+
|
|
11
|
+
- Stephan Randle ([@stephansama](https://github.com/stephansama))
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Stephan Randle
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# jsonresume-theme-catppuccin
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("@stephansama/catppuccin-jsonresume-theme");
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "jsonresume-theme-catppuccin",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Wrapper package for @stephansama/catppuccin-jsonresume-theme",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"release": "auto shipit"
|
|
8
|
+
},
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@auto-it/conventional-commits": "^11.3.6",
|
|
11
|
+
"auto": "^11.3.6"
|
|
12
|
+
},
|
|
13
|
+
"exports": {
|
|
14
|
+
".": "./index.js",
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "Stephan Randle",
|
|
19
|
+
"url": "https://stephansama.info",
|
|
20
|
+
"email": "stephanrandle.dev@gmail.com"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"packageManager": "pnpm@10.29.3",
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@stephansama/catppuccin-jsonresume-theme": "*"
|
|
26
|
+
}
|
|
27
|
+
}
|