diff --git a/docs/app/templates/public-pages/docs/installation.hbs b/docs/app/templates/public-pages/docs/installation.hbs index 270d48dde..431fea9e2 100644 --- a/docs/app/templates/public-pages/docs/installation.hbs +++ b/docs/app/templates/public-pages/docs/installation.hbs @@ -18,6 +18,10 @@

Manual installation

+

+ If you don't have used ember install you need to add ember-basic-dropdown as devDependencies in package.json. +

+

After the installation you need to add the following lines somewhere in your templates where you want to render the power select content into e.g. your application.hbs. In this component will be rendered the power select content. diff --git a/ember-power-select/src/blueprints/ember-power-select/index.js b/ember-power-select/blueprints/ember-power-select/index.js similarity index 100% rename from ember-power-select/src/blueprints/ember-power-select/index.js rename to ember-power-select/blueprints/ember-power-select/index.js diff --git a/ember-power-select/package.json b/ember-power-select/package.json index b2f1b07df..ca085b3bd 100644 --- a/ember-power-select/package.json +++ b/ember-power-select/package.json @@ -47,6 +47,7 @@ "_index.scss", "_index.less", "addon-main.cjs", + "blueprints", "declarations", "dist", "less", @@ -154,7 +155,6 @@ "type": "addon", "main": "addon-main.cjs", "app-js": { - "./blueprints/ember-power-select/index.js": "./dist/_app_/blueprints/ember-power-select/index.js", "./components/power-select-multiple.js": "./dist/_app_/components/power-select-multiple.js", "./components/power-select-multiple/input.js": "./dist/_app_/components/power-select-multiple/input.js", "./components/power-select-multiple/trigger.js": "./dist/_app_/components/power-select-multiple/trigger.js", diff --git a/ember-power-select/rollup.config.mjs b/ember-power-select/rollup.config.mjs index 970042f17..b056db914 100644 --- a/ember-power-select/rollup.config.mjs +++ b/ember-power-select/rollup.config.mjs @@ -74,7 +74,6 @@ export default [ // "app" tree. Things in here should also be in publicEntrypoints above, but // not everything in publicEntrypoints necessarily needs to go here. addon.appReexports([ - 'blueprints/**/*.js', 'components/**/*.js', 'helpers/**/*.js', 'test-support/*.js',