summaryrefslogtreecommitdiff
path: root/packages/astro-prism
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro-prism')
-rw-r--r--packages/astro-prism/CHANGELOG.md6
-rw-r--r--packages/astro-prism/package.json6
-rw-r--r--packages/astro-prism/tsconfig.json2
3 files changed, 10 insertions, 4 deletions
diff --git a/packages/astro-prism/CHANGELOG.md b/packages/astro-prism/CHANGELOG.md
index dae8671f9..f9cd9b2cc 100644
--- a/packages/astro-prism/CHANGELOG.md
+++ b/packages/astro-prism/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/prism
+## 3.0.0-beta.0
+
+### Major Changes
+
+- [`1eae2e3f7`](https://github.com/withastro/astro/commit/1eae2e3f7d693c9dfe91c8ccfbe606d32bf2fb81) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.
+
## 2.1.2
### Patch Changes
diff --git a/packages/astro-prism/package.json b/packages/astro-prism/package.json
index 4ad55bf7f..838447090 100644
--- a/packages/astro-prism/package.json
+++ b/packages/astro-prism/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/prism",
- "version": "2.1.2",
+ "version": "3.0.0-beta.0",
"description": "Add Prism syntax highlighting support to your Astro site",
"author": "withastro",
"type": "module",
@@ -14,7 +14,7 @@
"homepage": "https://docs.astro.build/en/reference/api-reference/#prism-",
"main": "dist/index.js",
"scripts": {
- "build": "astro-scripts build \"src/**/*.ts\" && tsc",
+ "build": "astro-scripts build \"src/**/*.ts\" && tsc -p ./tsconfig.json",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
@@ -39,6 +39,6 @@
"astro-scripts": "workspace:*"
},
"engines": {
- "node": ">=16.12.0"
+ "node": ">=18.14.1"
}
}
diff --git a/packages/astro-prism/tsconfig.json b/packages/astro-prism/tsconfig.json
index 569016e9d..fd652e629 100644
--- a/packages/astro-prism/tsconfig.json
+++ b/packages/astro-prism/tsconfig.json
@@ -3,7 +3,7 @@
"include": ["src"],
"compilerOptions": {
"allowJs": true,
- "target": "ES2021",
+ "target": "ES2022",
"module": "ES2022",
"outDir": "./dist"
}