Skip to content

Commit 3c913d9

Browse files
authored
🗑️ feat: Deprecate remix starter (#153)
1 parent 3951bc6 commit 3c913d9

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

starters/remix/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Drupal Decoupled: Remix
22

3+
> [!WARNING] Deprecated
4+
This template is no longer maintained as Remix has been marked as deprecated. We recommend using the [React Router starter](https://drupal-decoupled.octahedroid.com/docs/getting-started/quick-start/react-router/) instead.
5+
36
## Getting Started
47

58
Visit the docs to see how to use this [Remix](https://drupal-decoupled.octahedroid.com/docs/getting-started/quickstart/remix) starter.

starters/remix/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "graphql",
3+
"deprecated": "This template is deprecated. Please use our new template instead: npx create-react-router@latest --template octahedroid/drupal-decoupled/starters/react-router",
34
"private": true,
45
"sideEffects": false,
56
"type": "module",
@@ -15,7 +16,8 @@
1516
"storybook": "storybook dev -p 6006",
1617
"build-storybook": "storybook build",
1718
"format": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore .",
18-
"format:fix": "prettier --write --ignore-path .gitignore --ignore-path .prettierignore ."
19+
"format:fix": "prettier --write --ignore-path .gitignore --ignore-path .prettierignore .",
20+
"postinstall": "node ./scripts/post-install.js"
1921
},
2022
"dependencies": {
2123
"@conform-to/react": "^1.3.0",
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
console.log(
2+
'\x1b[33m%s\x1b[0m',
3+
`
4+
==================================================
5+
⚠️ DEPRECATION NOTICE ⚠️
6+
7+
The Remix starter is deprecated and will no longer be maintained.
8+
Please use our new React Router starter instead:
9+
npx create-react-router@latest --template octahedroid/drupal-decoupled/starters/react-router
10+
11+
==================================================
12+
`
13+
)

0 commit comments

Comments
 (0)