From 9a3fae61ed33151b9c377a324fd711c19d61732a Mon Sep 17 00:00:00 2001 From: Edward Faulkner Date: Wed, 2 Feb 2022 10:29:07 -0500 Subject: [PATCH] cleaning up old content in readme --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index d1b6ae1..6feca21 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,6 @@ Anti-prerequisites: - Remove ember-cli-moment-shim from your app. Earlier versions of this addon required it, but now it will only give you a redundant copy with the one provided by ember-auto-import. -```bash -cd your-project-directory -ember install ember-pikaday -``` - ## Styles In order to give apps control over styling, the default CSS does not load unless you tell it to. The recommended way to load the CSS is to create this file: @@ -364,20 +359,6 @@ assert.equal(Interactor.selectedMonth(), 3); assert.equal(Interactor.selectedDay(), 28); ``` -## Excluding assets - -By default, ember-pikaday will load for you the needed pikaday assets. -If you need to use a custom version, you can now disable auto assests importing like this: - -```js -// ember-cli-build.js -let app = new EmberApp(defaults, { - emberPikaday: { - excludePikadayAssets: true, - }, -}); -``` - ## Other Resources - [Video introduction by EmberScreencasts](https://www.emberscreencasts.com/posts/56-ember-pikaday)