Comparing version 0.0.0-nightly-d8bcdc1-20230506 to 0.0.0-nightly-d9061d154-20241010
/** | ||
* remix v0.0.0-nightly-d8bcdc1-20230506 | ||
* remix v0.0.0-nightly-d9061d154-20241010 | ||
* | ||
@@ -12,9 +12,9 @@ * Copyright (c) Remix Software Inc. | ||
// This class exists to prevent https://github.com/remix-run/remix/issues/2031 from occurring | ||
class RemixNotSetupError extends Error { | ||
class RemixPackageNotUsedError extends Error { | ||
constructor() { | ||
super("Did you forget to run `remix setup` for your platform?"); | ||
super("The `remix` package is no longer used for Remix modules and should be removed " + "from your project dependencies. See " + "https://github.com/remix-run/remix/releases/tag/remix%402.0.0" + " for more information."); | ||
} | ||
} | ||
throw new RemixNotSetupError(); | ||
throw new RemixPackageNotUsedError(); | ||
export { RemixNotSetupError }; | ||
export { RemixPackageNotUsedError }; |
@@ -1,3 +0,3 @@ | ||
export declare class RemixNotSetupError extends Error { | ||
export declare class RemixPackageNotUsedError extends Error { | ||
constructor(); | ||
} |
/** | ||
* remix v0.0.0-nightly-d8bcdc1-20230506 | ||
* remix v0.0.0-nightly-d9061d154-20241010 | ||
* | ||
@@ -16,9 +16,9 @@ * Copyright (c) Remix Software Inc. | ||
// This class exists to prevent https://github.com/remix-run/remix/issues/2031 from occurring | ||
class RemixNotSetupError extends Error { | ||
class RemixPackageNotUsedError extends Error { | ||
constructor() { | ||
super("Did you forget to run `remix setup` for your platform?"); | ||
super("The `remix` package is no longer used for Remix modules and should be removed " + "from your project dependencies. See " + "https://github.com/remix-run/remix/releases/tag/remix%402.0.0" + " for more information."); | ||
} | ||
} | ||
throw new RemixNotSetupError(); | ||
throw new RemixPackageNotUsedError(); | ||
exports.RemixNotSetupError = RemixNotSetupError; | ||
exports.RemixPackageNotUsedError = RemixPackageNotUsedError; |
MIT License | ||
Copyright (c) Remix Software Inc. 2020-2021 | ||
Copyright (c) Shopify Inc. 2022-2023 | ||
Copyright (c) Shopify Inc. 2022-2024 | ||
@@ -6,0 +6,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
{ | ||
"name": "remix", | ||
"version": "0.0.0-nightly-d8bcdc1-20230506", | ||
"version": "0.0.0-nightly-d9061d154-20241010", | ||
"description": "A framework for building better websites", | ||
@@ -20,3 +20,3 @@ "homepage": "https://remix.run", | ||
"engines": { | ||
"node": ">=14" | ||
"node": ">=18.0.0" | ||
}, | ||
@@ -28,3 +28,6 @@ "files": [ | ||
"README.md" | ||
] | ||
} | ||
], | ||
"scripts": { | ||
"tsc": "tsc" | ||
} | ||
} |
@@ -0,1 +1,8 @@ | ||
# Deprecated | ||
The `remix` package is no longer used for Remix modules. It was [officially deprecated in v1.6.0](https://github.com/remix-run/remix/releases/tag/v1.6.0) then finally [removed in v2.0.0](https://github.com/remix-run/remix/releases/tag/remix@2.0.0). This package should be removed from your project dependencies if you have it installed. | ||
For stats about Remix, please consider referring to @remix-run/router or @remix | ||
-run/server-runtime instead. | ||
# Welcome to Remix! | ||
@@ -2,0 +9,0 @@ |
21
4248
7