Comparing version 0.0.0-nightly-81ec1b7-20220830 to 0.0.0-nightly-825f70ebd-20240914
/** | ||
* remix v0.0.0-nightly-81ec1b7-20220830 | ||
* remix v0.0.0-nightly-825f70ebd-20240914 | ||
* | ||
@@ -11,11 +11,10 @@ * Copyright (c) Remix Software Inc. | ||
*/ | ||
// This class exists to prevent https://github.com/remix-run/remix/issues/2031 from occuring | ||
class RemixNotSetupError extends Error { | ||
// This class exists to prevent https://github.com/remix-run/remix/issues/2031 from occurring | ||
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-81ec1b7-20220830 | ||
* remix v0.0.0-nightly-825f70ebd-20240914 | ||
* | ||
@@ -15,11 +15,10 @@ * Copyright (c) Remix Software Inc. | ||
// This class exists to prevent https://github.com/remix-run/remix/issues/2031 from occuring | ||
class RemixNotSetupError extends Error { | ||
// This class exists to prevent https://github.com/remix-run/remix/issues/2031 from occurring | ||
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; |
@@ -1,7 +0,22 @@ | ||
Copyright 2021 Remix Software Inc. | ||
MIT License | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
Copyright (c) Remix Software Inc. 2020-2021 | ||
Copyright (c) Shopify Inc. 2022-2024 | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
{ | ||
"name": "remix", | ||
"version": "0.0.0-nightly-81ec1b7-20220830", | ||
"version": "0.0.0-nightly-825f70ebd-20240914", | ||
"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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4248
21