Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [20]
node_version: [24]
# Build processes work differently across operating systems, so the
# checks run on each one to make sure anyone can contribute to the
# docs.
Expand Down
1 change: 0 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const path = require('path');
const prismic = require('@prismicio/client');
const fetch = require('node-fetch');

const VERSIONS_JSON = require('./versions.json');

Expand Down
2,599 changes: 1,335 additions & 1,264 deletions package-lock.json

Large diffs are not rendered by default.

33 changes: 15 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=20.0.0"
"node": ">=24.0.0"
},
"scripts": {
"prebuild": "npm run generate-markdown && scripts/i18n.sh && if [ -n \"$CROWDIN_PERSONAL_TOKEN\" ]; then npm run crowdin:sync; fi",
Expand All @@ -22,7 +22,7 @@
"prettier": "prettier \"./**/*.{html,ts,tsx,js,jsx,md,mdx}\" --cache",
"start": "docusaurus start",
"swizzle": "docusaurus swizzle",
"spellcheck": "cspell --no-progress \"**/*.{md,mdx}\""
"spellcheck": "cspell --no-progress --gitignore \"**/*.{md,mdx}\""
},
"browserslist": {
"production": [
Expand All @@ -39,40 +39,37 @@
"dependencies": {
"@docusaurus/core": "^3.10.2",
"@docusaurus/faster": "^3.10.2",
"@docusaurus/mdx-loader": "^3.10.2",
"@docusaurus/plugin-client-redirects": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@floating-ui/react": "^0.27.20",
"@ionic-internal/ionic-ds": "^7.0.0",
"@mdx-js/react": "^3.0.0",
"@prismicio/client": "^7.21.8",
"@ionic-internal/ionic-ds": "^8.0.0",
"@mdx-js/react": "^3.1.1",
"@prismicio/client": "^7.22.0",
"@prismicio/react": "^3.4.1",
"@stackblitz/sdk": "^1.6.0",
"clsx": "^1.1.1",
"@stackblitz/sdk": "^1.11.1",
"clsx": "^2.1.1",
"crowdin": "^3.5.0",
"docusaurus-plugin-copy-page-button": "^0.8.2",
"docusaurus-plugin-copy-page-button": "^0.8.4",
"docusaurus-plugin-module-alias": "^0.0.2",
"docusaurus-plugin-sass": "^0.2.6",
"fs-extra": "^9.1.0",
"modern-normalize": "^1.1.0",
"prism-react-renderer": "^2.1.0",
"fs-extra": "^11.4.0",
"modern-normalize": "^3.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"sass": "^1.44.0",
"semver": "^7.3.5"
"sass": "^1.102.0",
"semver": "^7.8.5"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.2",
"@docusaurus/tsconfig": "^3.10.2",
"@ionic/prettier-config": "^3.0.0",
"@types/react": "^19.2.18",
"cspell": "^6.31.3",
"html-loader": "^3.1.0",
"cspell": "^10.0.1",
"hygen": "^6.2.11",
"prettier": "^2.8.8",
"typescript": "^5.2.2"
"typescript": "^5.9.3"
},
"prettier": "@ionic/prettier-config"
}
2 changes: 0 additions & 2 deletions plugins/docusaurus-plugin-ionic-component-api/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
const fetch = require('node-fetch');

module.exports = function (context, options) {
return {
name: 'docusaurus-plugin-ionic-component-api',
Expand Down
1 change: 0 additions & 1 deletion scripts/native.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { writeFileSync } from 'fs';
import fetch from 'node-fetch';

const tag = 'latest';

Expand Down
1 change: 0 additions & 1 deletion scripts/release-notes.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import pkg from 'fs-extra';
import fetch from 'node-fetch';
import { resolve, dirname } from 'path';
import { compare } from 'semver';
import { URL, fileURLToPath } from 'url';
Expand Down