Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Apr 27, 2024
1 parent 1c50ab5 commit 0bb11f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs-app/public/docs/usage/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ If using `@ember/routing/router` or `@embroider/router`
You'll want to also install `ember-primitives`, so that you can use the [`@properLinks`] decorator on the router, giveng you the ability to _just use anchor tags (`<a>`)_ (a requirement for in-browser linking in markdown).

```js
import { kolayRoutes } from "kolay";
import { addRoutes } from "kolay";
import { properLinks } from "ember-primitives/proper-links";

@properLinks
Expand All @@ -97,7 +97,7 @@ export default class Router extends EmberRouter {
}

Router.map(function () {
kolayRoutes(this);
addRoutes(this);
});
```

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kolay",
"version": "0.0.3",
"version": "0.0.5",
"description": "",
"keywords": [
"documentation",
Expand Down Expand Up @@ -87,6 +87,7 @@
"test:node": "vitest --run"
},
"peerDependencies": {
"@universal-ember/kolay-ui": "workspace:^",
"ember-source": "^5.7.0"
},
"dependencies": {
Expand All @@ -95,7 +96,6 @@
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@glint/template": "^1.3.0",
"@universal-ember/kolay-ui": "workspace:^",
"ember-modifier": "^4.1.0",
"ember-primitives": "^0.12.0",
"ember-repl": "^4.1.1",
Expand All @@ -112,6 +112,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.0",
"@universal-ember/kolay-ui": "workspace:^",
"@glint/core": "^1.3.0",
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"@tsconfig/node20": "^20.1.2",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@universal-ember/kolay-ui",
"version": "0.0.0",
"version": "0.0.2",
"description": "The default blueprint for Embroider v2 addons.",
"keywords": [
"ember-addon"
Expand Down

0 comments on commit 0bb11f5

Please sign in to comment.