Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: 'package.json'
- run: yarn install --immutable
- name: Run yarn npm audit
run: yarn audit
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: 'package.json'
- run: yarn
- run: yarn eslint
4 changes: 2 additions & 2 deletions .github/workflows/publish-dry-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
node-version-file: 'package.json'
- run: yarn
- run: yarn publish-dry-run
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
node-version-file: 'package.json'
registry-url: 'https://registry.npmjs.org'
- run: yarn
- run: yarn workspaces foreach --all --no-private npm publish --tolerate-republish --access public
4 changes: 2 additions & 2 deletions .github/workflows/stylelint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version-file: 'package.json'
- run: yarn
- run: yarn run stylelint "src/scss/**/*.scss"
942 changes: 0 additions & 942 deletions .yarn/releases/yarn-4.10.3.cjs

This file was deleted.

940 changes: 940 additions & 0 deletions .yarn/releases/yarn-4.13.0.cjs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ checksumBehavior: update

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.10.3.cjs

npmRegistryServer: "https://registry.npmjs.org"

npmScopes:
chocolatey-software:
npmRegistryServer: "https://registry.npmjs.org"

yarnPath: .yarn/releases/yarn-4.13.0.cjs
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{
"name": "choco-theme",
"version": "2.6.0",
"packageManager": "yarn@4.10.3",
"packageManager": "yarn@4.13.0",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/chocolatey/choco-theme.git"
},
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"cssnano": "^7.1.1",
"postcss": "^8.5.6",
"sass": "^1.90.0",
"stylelint": "^16.24.0",
"cssnano": "^7.1.4",
"postcss": "^8.5.9",
"sass": "^1.99.0",
"stylelint": "^16.26.1",
"stylelint-config-twbs-bootstrap": "^16.1.0"
},
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions packages/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "@chocolatey-software/astro",
"version": "2.6.0",
"version": "2.7.0",
"description": "Chocolatey Software theme assets for Astro.",
"author": "Chocolatey Software (https://chocolatey.org/)",
"homepage": "https://github.com/chocolatey/choco-theme/blob/main/packages/astro#readme",
"license": "Apache-2.0",
"dependencies": {
"@astrojs/mdx": "4.3.13",
"@astrojs/node": "9.5.4",
"@astrojs/rss": "4.0.15",
"@astrojs/sitemap": "3.7.0",
"astro": "5.18.0",
"@astrojs/mdx": "5.0.3",
"@astrojs/node": "10.0.4",
"@astrojs/rss": "4.0.18",
"@astrojs/sitemap": "3.7.2",
"astro": "6.1.5",
"rehype-mermaid": "^3.0.0",
"remark-custom-header-id": "^1.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/components/Callout.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';

// Collapse - Define the schema
const calloutSchema = z.object({
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/components/CollapseButton.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';

// CollapseButton - Define the schema
const collapseButtonSchema = z.object({
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/components/Iframe.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';

// Iframe - Define the schema
const iframeSchema = z.object({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';

const dynamicCodeBlockSchema = z.object({
language: z.enum(['markup', 'css', 'clike', 'javascript', 'bash', 'csharp', 'diff', 'json', 'powershell', 'puppet', 'python', 'ruby', 'scss', 'shell-session', 'xml-doc', 'yaml'])
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';

// Define the schema
const dynamicCodeBlockInputSchema = z.object({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';
import Callout from '@choco-astro/components/Callout.astro';

const dynamicCodeBlockValidationSchema = z.object({
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/src/components/tabs/TabsTabContainer.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { z } from 'zod';
import { z } from 'astro/zod';

// Tabs - Define the schema
export const tabsSchema = z.object({
Expand Down
2 changes: 1 addition & 1 deletion packages/blog/dist/css/blog.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/blog/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chocolatey-software/blog",
"version": "2.6.0",
"version": "2.7.0",
"description": "Chocolatey Software theme assets for use on blog.chocolatey.org.",
"author": "Chocolatey Software (https://chocolatey.org/)",
"homepage": "https://github.com/chocolatey/choco-theme/blob/main/packages/blog#readme",
Expand All @@ -14,8 +14,8 @@
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"anchor-js": "^5.0.0",
"bootstrap": "^5.3.7",
"luxon": "^3.7.1",
"bootstrap": "^5.3.8",
"luxon": "^3.7.2",
"prismjs": "^1.30.0"
},
"files": [
Expand Down
4 changes: 2 additions & 2 deletions packages/boxstarter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chocolatey-software/boxstarter",
"version": "2.5.2",
"version": "2.7.0",
"description": "Chocolatey Software theme assets for use on boxstarter.org.",
"author": "Chocolatey Software (https://chocolatey.org/)",
"homepage": "https://github.com/chocolatey/choco-theme/blob/main/packages/boxstarter#readme",
Expand All @@ -14,7 +14,7 @@
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"anchor-js": "^5.0.0",
"bootstrap": "^5.3.7",
"bootstrap": "^5.3.8",
"clipboard": "^2.0.11",
"jquery": "^3.7.1",
"prismjs": "^1.30.0"
Expand Down
26 changes: 13 additions & 13 deletions packages/build-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "@chocolatey-software/build-tools",
"version": "2.6.0",
"version": "2.7.0",
"description": "Chocolatey Software build tools.",
"author": "Chocolatey Software (https://chocolatey.org/)",
"homepage": "https://github.com/chocolatey/choco-theme/blob/main/packages/build-tools#readme",
"license": "Apache-2.0",
"dependencies": {
"@eslint/js": "^9.34.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/node": "^24.3.1",
"@typescript-eslint/parser": "^8.42.0",
"dotenv": "^17.2.3",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"eslint-plugin-playwright": "^2.2.2",
"globals": "^16.4.0",
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^24.12.2",
"@typescript-eslint/parser": "^8.58.1",
"dotenv": "^17.4.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-plugin-playwright": "^2.10.1",
"globals": "^16.5.0",
"purgecss": "^8.0.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0"
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
},
"files": [
"LICENSE",
Expand Down
14 changes: 7 additions & 7 deletions packages/ccm/CREDITS.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"link": "https://github.com/chocolatey/choco-theme/blob/main/packages/ccm",
"licenseLink": "https://github.com/chocolatey/choco-theme/blob/main/packages/ccm/LICENSE",
"licenseName": "LICENSE",
"version": "2.6.0",
"version": "2.7.0",
"dependencies": [
{
"name": "@eonasdan/tempus-dominus",
Expand Down Expand Up @@ -151,11 +151,11 @@
{
"name": "fuse.js",
"link": "https://github.com/krisk/Fuse",
"version": "7.1.0",
"version": "7.3.0",
"licenses": [
{
"type": "Apache-2.0",
"link": "https://github.com/krisk/Fuse/blob/8119c18862f7df585688b1320ff307eb19f8ff89/LICENSE",
"link": "https://github.com/krisk/Fuse/blob/aae48f51475284f97d47c0d16b1aaa7ef7f910b1/LICENSE",
"name": "LICENSE"
}
]
Expand Down Expand Up @@ -235,11 +235,11 @@
{
"name": "moment-timezone",
"link": "https://github.com/moment/moment-timezone",
"version": "0.6.0",
"version": "0.6.1",
"licenses": [
{
"type": "MIT",
"link": "https://github.com/moment/moment-timezone/blob/92c6a36c9d2f28658d3f122839022aacca56a9ef/LICENSE",
"link": "https://github.com/moment/moment-timezone/blob/13e724cb72093aa297f6e4a5acd69cbb4afd52a5/LICENSE",
"name": "LICENSE"
}
]
Expand Down Expand Up @@ -307,11 +307,11 @@
{
"name": "sweetalert2",
"link": "https://github.com/sweetalert2/sweetalert2",
"version": "11.26.22",
"version": "11.26.24",
"licenses": [
{
"type": "MIT",
"link": "https://github.com/sweetalert2/sweetalert2/blob/355e20784039c5d7f45f0898e340af4874c517b7/LICENSE",
"link": "https://github.com/sweetalert2/sweetalert2/blob/b3b27fd7bf6dd3359249b52fd690bd732a2d11f2/LICENSE",
"name": "LICENSE"
}
]
Expand Down
20 changes: 10 additions & 10 deletions packages/ccm/CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img alt="Chocolatey logo" width="260" style="margin-right: 1rem;" src="https://img.chocolatey.org/logos/chocolatey.png"> <img alt="Chocolatey icon logo" width="200" src="https://img.chocolatey.org/logos/chocolatey-icon.png">
<img alt="Chocolatey logo" width="260" style="margin-right: 1rem;" src="https://img.chocolatey.org/logos/chocolatey.png" data-astro-source-file="C:/source/credits-generator/src/pages/credits.astro" data-astro-source-loc="48:26"> <img alt="Chocolatey icon logo" width="200" src="https://img.chocolatey.org/logos/chocolatey-icon.png" data-astro-source-file="C:/source/credits-generator/src/pages/credits.astro" data-astro-source-loc="49:26">

# @chocolatey-software/ccm Third Party Licenses

Expand All @@ -15,7 +15,7 @@ Chocolatey uses a number of 3rd party components. Their details are below.
* [Chocolatey Open Source](#chocolatey-open-source)
* [@chocolatey-software/ccm](#chocolatey-softwareccm)
* [Apache v2.0 License](#apache-v20-license-1)
* [fuse.js@7.1.0](#fusejs710)
* [fuse.js@7.3.0](#fusejs730)
* [Attribution 4.0 International License](#attribution-40-international-license-1)
* [@fortawesome/fontawesome-free@7.2.0](#fortawesomefontawesome-free720)
* [MIT License](#mit-license-1)
Expand All @@ -36,13 +36,13 @@ Chocolatey uses a number of 3rd party components. Their details are below.
* [jstree@3.3.17](#jstree3317)
* [luxon@3.7.2](#luxon372)
* [moment@2.30.1](#moment2301)
* [moment-timezone@0.6.0](#moment-timezone060)
* [moment-timezone@0.6.1](#moment-timezone061)
* [mustache@4.2.0](#mustache420)
* [prismjs@1.30.0](#prismjs1300)
* [pwstrength-bootstrap@3.1.3](#pwstrength-bootstrap313)
* [sortablejs@1.15.7](#sortablejs1157)
* [spin.js@4.1.2](#spinjs412)
* [sweetalert2@11.26.22](#sweetalert2112622)
* [sweetalert2@11.26.24](#sweetalert2112624)
* [timeago@1.6.7](#timeago167)
* [underscore@1.13.8](#underscore1138)
* [SIL OPEN FONT 1.1 LICENSE](#sil-open-font-11-license-1)
Expand Down Expand Up @@ -727,9 +727,9 @@ https://www.apache.org/licenses/LICENSE-2.0

### Apache v2.0 License

#### fuse.js@7.1.0
#### fuse.js@7.3.0

[fuse.js](https://github.com/krisk/Fuse) - [License terms.](https://github.com/krisk/Fuse/blob/8119c18862f7df585688b1320ff307eb19f8ff89/LICENSE)
[fuse.js](https://github.com/krisk/Fuse) - [License terms.](https://github.com/krisk/Fuse/blob/aae48f51475284f97d47c0d16b1aaa7ef7f910b1/LICENSE)

### Attribution 4.0 International License

Expand Down Expand Up @@ -807,9 +807,9 @@ https://www.apache.org/licenses/LICENSE-2.0

[moment](https://github.com/moment/moment) - [License terms.](https://github.com/moment/moment/blob/485d9a7d709bd5f3869a7ad24630cf0746d072dc/LICENSE)

#### moment-timezone@0.6.0
#### moment-timezone@0.6.1

[moment-timezone](https://github.com/moment/moment-timezone) - [License terms.](https://github.com/moment/moment-timezone/blob/92c6a36c9d2f28658d3f122839022aacca56a9ef/LICENSE)
[moment-timezone](https://github.com/moment/moment-timezone) - [License terms.](https://github.com/moment/moment-timezone/blob/13e724cb72093aa297f6e4a5acd69cbb4afd52a5/LICENSE)

#### mustache@4.2.0

Expand All @@ -831,9 +831,9 @@ https://www.apache.org/licenses/LICENSE-2.0

[spin.js](https://github.com/fgnass/spin.js) - [License terms.](https://github.com/fgnass/spin.js/blob/653e79c5ef1f068e5a1a31da5b79b6d1e1b1674d/LICENSE.md)

#### sweetalert2@11.26.22
#### sweetalert2@11.26.24

[sweetalert2](https://github.com/sweetalert2/sweetalert2) - [License terms.](https://github.com/sweetalert2/sweetalert2/blob/355e20784039c5d7f45f0898e340af4874c517b7/LICENSE)
[sweetalert2](https://github.com/sweetalert2/sweetalert2) - [License terms.](https://github.com/sweetalert2/sweetalert2/blob/b3b27fd7bf6dd3359249b52fd690bd732a2d11f2/LICENSE)

#### timeago@1.6.7

Expand Down
Binary file modified packages/ccm/CREDITS.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/ccm/dist/css/ccm.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ccm/dist/css/vendors.min.css

Large diffs are not rendered by default.

Loading
Loading