Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix blueprint #1626

Merged
merged 2 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/app/templates/public-pages/docs/installation.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@

<h3>Manual installation</h3>

<p>
If you don't have used <code>ember install</code> you need to add <code>ember-basic-dropdown</code> as <code>devDependencies</code> in <code>package.json</code>.
</p>

<p>
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 <code>application.hbs</code>.
In this component will be rendered the power select content.
Expand Down
2 changes: 1 addition & 1 deletion ember-power-select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"_index.scss",
"_index.less",
"addon-main.cjs",
"blueprints",
"declarations",
"dist",
"less",
Expand Down Expand Up @@ -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",
Expand Down
1 change: 0 additions & 1 deletion ember-power-select/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down