diff --git a/examples/misc/code-splitting/package.json b/examples/misc/code-splitting/package.json index 47bc03c44..cb227490f 100644 --- a/examples/misc/code-splitting/package.json +++ b/examples/misc/code-splitting/package.json @@ -6,8 +6,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/misc/server-rendering/package.json b/examples/misc/server-rendering/package.json index 4b95354c5..72e79b7b8 100644 --- a/examples/misc/server-rendering/package.json +++ b/examples/misc/server-rendering/package.json @@ -17,8 +17,8 @@ "license": "MIT", "dependencies": { "@babel/register": "^7.0.0", - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "@hickory/in-memory": "^1.0.0", "express": "^4.16.2", diff --git a/examples/misc/side-effect/package.json b/examples/misc/side-effect/package.json index 3e8c1473c..9031797d1 100644 --- a/examples/misc/side-effect/package.json +++ b/examples/misc/side-effect/package.json @@ -10,9 +10,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", - "@curi/side-effect-title": "1.0.1", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", + "@curi/side-effect-title": "file:../../../packages/side-effects/side-effect-title", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/misc/updating-routes/package.json b/examples/misc/updating-routes/package.json index 122206bea..15df43080 100644 --- a/examples/misc/updating-routes/package.json +++ b/examples/misc/updating-routes/package.json @@ -6,8 +6,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/accessibility/package.json b/examples/react/accessibility/package.json index 17ed47c59..c7b787ad9 100644 --- a/examples/react/accessibility/package.json +++ b/examples/react/accessibility/package.json @@ -9,8 +9,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/active-links/package.json b/examples/react/active-links/package.json index 1a99f6ae8..195ae521d 100644 --- a/examples/react/active-links/package.json +++ b/examples/react/active-links/package.json @@ -12,9 +12,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/route-active": "1.1.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/route-active": "file:../../../packages/interactions/route-active", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/async-nav/package.json b/examples/react/async-nav/package.json index 93fc4cf98..981ca9d67 100644 --- a/examples/react/async-nav/package.json +++ b/examples/react/async-nav/package.json @@ -12,9 +12,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/route-prefetch": "1.1.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/route-prefetch": "file:../../../packages/interactions/route-prefetch", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0", diff --git a/examples/react/basic/package.json b/examples/react/basic/package.json index 99f85a4a5..1a1f5c063 100644 --- a/examples/react/basic/package.json +++ b/examples/react/basic/package.json @@ -9,8 +9,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/blocking-navigation/package.json b/examples/react/blocking-navigation/package.json index 6896d1d90..52769e6d2 100644 --- a/examples/react/blocking-navigation/package.json +++ b/examples/react/blocking-navigation/package.json @@ -6,8 +6,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/breadcrumbs/package.json b/examples/react/breadcrumbs/package.json index 9b72e3b82..9e8a36daa 100644 --- a/examples/react/breadcrumbs/package.json +++ b/examples/react/breadcrumbs/package.json @@ -12,9 +12,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/route-ancestors": "1.1.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/route-ancestors": "file:../../../packages/interactions/route-ancestors", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/data-loading/package.json b/examples/react/data-loading/package.json index 6cf51c065..a671023e0 100644 --- a/examples/react/data-loading/package.json +++ b/examples/react/data-loading/package.json @@ -12,9 +12,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/route-prefetch": "1.1.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/route-prefetch": "file:../../../packages/interactions/route-prefetch", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0" diff --git a/examples/react/modal/package.json b/examples/react/modal/package.json index d3df40ca7..0996ff509 100644 --- a/examples/react/modal/package.json +++ b/examples/react/modal/package.json @@ -12,8 +12,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "prop-types": "^15.6.0", "react": "^16.5.0", diff --git a/examples/react/multi-body/package.json b/examples/react/multi-body/package.json index 33a72fe99..467a131ce 100644 --- a/examples/react/multi-body/package.json +++ b/examples/react/multi-body/package.json @@ -9,8 +9,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "prop-types": "^15.6.0", "react": "^16.5.0", diff --git a/examples/react/redirects/package.json b/examples/react/redirects/package.json index 776ec6054..6c491b27c 100644 --- a/examples/react/redirects/package.json +++ b/examples/react/redirects/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "qs": "^6.4.0", "react": "^16.5.0", diff --git a/examples/react/transitions/package.json b/examples/react/transitions/package.json index 9e820fc77..9fd4348a5 100644 --- a/examples/react/transitions/package.json +++ b/examples/react/transitions/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/react-dom": "1.2.0", - "@curi/router": "1.1.0", + "@curi/react-dom": "file:../../../packages/react-dom", + "@curi/router": "file:../../../packages/router", "@hickory/browser": "^1.0.0", "react": "^16.5.0", "react-dom": "^16.5.0", diff --git a/examples/svelte/active-links/package.json b/examples/svelte/active-links/package.json index 4f00d09fa..efa7b2c7f 100644 --- a/examples/svelte/active-links/package.json +++ b/examples/svelte/active-links/package.json @@ -11,9 +11,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/route-active": "1.1.0", - "@curi/router": "1.1.0", - "@curi/svelte": "1.0.0-beta.12", + "@curi/route-active": "file:../../../packages/interactions/route-active", + "@curi/router": "file:../../../packages/router", + "@curi/svelte": "file:../../../packages/svelte", "@hickory/browser": "^1.0.0" } } diff --git a/examples/svelte/async-nav/package.json b/examples/svelte/async-nav/package.json index 1306a511f..ff3fb4bb2 100644 --- a/examples/svelte/async-nav/package.json +++ b/examples/svelte/async-nav/package.json @@ -10,9 +10,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/route-prefetch": "1.1.0", - "@curi/router": "1.1.0", - "@curi/svelte": "1.0.0-beta.12", + "@curi/route-prefetch": "file:../../../packages/interactions/route-prefetch", + "@curi/router": "file:../../../packages/router", + "@curi/svelte": "file:../../../packages/svelte", "@hickory/browser": "^1.0.0", "svelte-spinner": "^1.0.0" } diff --git a/examples/svelte/basic/package.json b/examples/svelte/basic/package.json index 26cd73e10..fe5a3f33c 100644 --- a/examples/svelte/basic/package.json +++ b/examples/svelte/basic/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/svelte": "1.0.0-beta.12", + "@curi/router": "file:../../../packages/router", + "@curi/svelte": "file:../../../packages/svelte", "@hickory/browser": "^1.0.0" } } diff --git a/examples/svelte/breadcrumbs/package.json b/examples/svelte/breadcrumbs/package.json index 595738bcf..7e57f86e2 100644 --- a/examples/svelte/breadcrumbs/package.json +++ b/examples/svelte/breadcrumbs/package.json @@ -11,9 +11,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/route-ancestors": "1.1.0", - "@curi/router": "1.1.0", - "@curi/svelte": "1.0.0-beta.12", + "@curi/route-ancestors": "file:../../../packages/interactions/route-ancestors", + "@curi/router": "file:../../../packages/router", + "@curi/svelte": "file:../../../packages/svelte", "@hickory/browser": "^1.0.0" } } diff --git a/examples/svelte/redirects/package.json b/examples/svelte/redirects/package.json index c64858aff..84f98c2c7 100644 --- a/examples/svelte/redirects/package.json +++ b/examples/svelte/redirects/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/svelte": "1.0.0-beta.12", + "@curi/router": "file:../../../packages/router", + "@curi/svelte": "file:../../../packages/svelte", "@hickory/browser": "^1.0.0", "qs": "^6.4.0" } diff --git a/examples/vue/accessibility/package.json b/examples/vue/accessibility/package.json index 83ef02793..6e8d8e3df 100644 --- a/examples/vue/accessibility/package.json +++ b/examples/vue/accessibility/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/examples/vue/active-links/package.json b/examples/vue/active-links/package.json index 25dd49b43..81e25b566 100644 --- a/examples/vue/active-links/package.json +++ b/examples/vue/active-links/package.json @@ -16,9 +16,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/route-active": "1.1.0", - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/route-active": "file:../../../packages/interactions/route-active", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/examples/vue/async-nav/package.json b/examples/vue/async-nav/package.json index 5535f56d6..3364e7722 100644 --- a/examples/vue/async-nav/package.json +++ b/examples/vue/async-nav/package.json @@ -12,8 +12,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "epic-spinners": "^1.0.3", "vue": "^2.5.22" diff --git a/examples/vue/basic/package.json b/examples/vue/basic/package.json index 82a9078ec..92ba73375 100644 --- a/examples/vue/basic/package.json +++ b/examples/vue/basic/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/examples/vue/blocking-navigation/package.json b/examples/vue/blocking-navigation/package.json index c373fd123..fd9ccf1ae 100644 --- a/examples/vue/blocking-navigation/package.json +++ b/examples/vue/blocking-navigation/package.json @@ -6,8 +6,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/examples/vue/breadcrumbs/package.json b/examples/vue/breadcrumbs/package.json index 6ee59fd77..6f7849928 100644 --- a/examples/vue/breadcrumbs/package.json +++ b/examples/vue/breadcrumbs/package.json @@ -12,9 +12,9 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/route-ancestors": "1.1.0", - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/route-ancestors": "file:../../../packages/interactions/route-ancestors", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/examples/vue/modal/package.json b/examples/vue/modal/package.json index 576a68708..6fd1995e9 100644 --- a/examples/vue/modal/package.json +++ b/examples/vue/modal/package.json @@ -12,8 +12,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/examples/vue/redirects/package.json b/examples/vue/redirects/package.json index 133898505..c075bf879 100644 --- a/examples/vue/redirects/package.json +++ b/examples/vue/redirects/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "qs": "^6.4.0", "vue": "^2.5.22", diff --git a/examples/vue/transitions/package.json b/examples/vue/transitions/package.json index 720c9bd21..30cefe1ba 100644 --- a/examples/vue/transitions/package.json +++ b/examples/vue/transitions/package.json @@ -11,8 +11,8 @@ "author": "Paul Sherman", "license": "MIT", "dependencies": { - "@curi/router": "1.1.0", - "@curi/vue": "1.0.0-beta.25", + "@curi/router": "file:../../../packages/router", + "@curi/vue": "file:../../../packages/vue", "@hickory/browser": "^1.0.0", "vue": "^2.5.22" } diff --git a/package.json b/package.json index d8d58fca6..1d1121bb4 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,7 @@ "@babel/preset-env": "^7.3.1", "@babel/preset-react": "^7.0.0", "@babel/register": "^7.0.0", + "@curi/route-active": "file:../interactions/route-active", "@hickory/in-memory": "^1.0.2", "@types/fs-extra": "^5.0.4", "@types/jest": "^23.3.13",