Skip to content

Commit

Permalink
PRep for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
brophdawg11 committed May 31, 2022
1 parent a2ac47d commit d6c7833
Show file tree
Hide file tree
Showing 20 changed files with 15 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Remix Routers is a collection of libraries that port `react-router-dom` to diffe

👷‍♂️ _Not published yet, soon!_

_Note: If you are using TypeScript you will need to use `patch-package` and copy the `@remix-run+router+0.1.0.patch` patch from this repo to internally change the `RouteObject.element` type from `ReactNode` to `any` for use with Vue components._

## Design Goals

For simplicity and to keep things consistent between `react-router-dom` and these implementations, these implementations follow a few guidelines:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
"private": true,
"name": "remix-router-react-stub",
"name": "react-router-dom-stub",
"version": "0.0.0",
"description": "Stub package to implement a react-router-dom reference app",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "vite build && tsc -b",
"clean": "git clean -fX .",
"dev": "vite dev",
"integration:start": "vite build && vite preview --port 3000",
"integration:test": "cypress run --config-file ./../../cypress.json",
"integration": "start-server-and-test integration:start http-get://localhost:3000/ integration:test"
"integration": "start-server-and-test integration:start http-get://localhost:3000/ integration:test",
"prepublishOnly": "echo \"Refusing to publish react-router-dom-stub\" && exit 1"
},
"dependencies": {
"react": "18.1.0",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions packages/vue/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright 2022 Matt Brophy <[email protected]>

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 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.
3 changes: 2 additions & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"dev": "vite dev",
"integration:start": "vite dev --mode=production --port 3000",
"integration:test": "cypress run --config-file ./../../cypress.json",
"integration": "start-server-and-test integration:start http-get://localhost:3000/ integration:test"
"integration": "start-server-and-test integration:start http-get://localhost:3000/ integration:test",
"prepublishOnly": "vite build"
},
"dependencies": {
"@remix-run/router": "0.1.0",
Expand Down

0 comments on commit d6c7833

Please sign in to comment.