Questions tagged [ember-cli]

Node.js module which provides a command line interface (CLI) for developing Ember.js applications

A command line utility for creating applications.

Applications created with this tool benefit by being structured according to an ideal project template for Ember.js. It is also "batteries included", with support for generators/blueprints, dependency management, asset compilation, testing, and ECMAScript 6 modules.

For more information see the project documentation and the GitHub project page.

3109 questions
1
vote
1 answer

Using Ember CLI Addon Models in Ember Application?

I want to allow something like the following to work in my application: store.find('my-addon.my-addon-model', 1) store.find('my-addon/my-addon-model', 1) store.find('my-addon:my-addon-model', 1) (unlikely) The thing is I want it to search for a…
jmurphyau
  • 2,309
  • 13
  • 11
1
vote
0 answers

Cannot convert a Symbol value to a string ember-cli

I am trying to set ember-cli.photoswipe locally and i come across to this issue: Cannot convert a Symbol value to a string TypeError: Cannot convert a Symbol value to a string Symbol.hasOwnProperty Symbols don't coerce to strings on their…
Koala7
  • 1,340
  • 7
  • 41
  • 83
1
vote
2 answers

"Ember Simple Auth" invalidateSession from component

Trying to execute this code within a component's template // components/my-component.js {{#if session.isAuthenticated}} Sign out {{else}} {{#link-to 'signin'}}Sign in{{/link-to}} {{/if}} However, when…
Flavio
  • 846
  • 1
  • 9
  • 21
1
vote
0 answers

"undefined is not a function" in dependency checker

I have a addon which used to work in Ember CLI 0.1.4 but now that I'm using 0.2.0 I think the likely improved ember-cli-dependency-checker is not letting my addon do it's magic. The addon in question can be found here: ui-bs-popover. My theory is…
ken
  • 8,763
  • 11
  • 72
  • 133
1
vote
0 answers

Ember app served from node.js using baseUrl/rootUrl with authentication

So, currently I have been using Ember cli to proxy to my api that is on a different port. I am trying to serve up a few routes using only node ('/', '/signIn', '/signUp'), and then once a user is authenticated through the '/signIn' route, serve up…
Dana
  • 51
  • 1
  • 5
1
vote
1 answer

How to import socket.io via brocfile for ember cli application?

I want to use socket.io in my ember cli application, so I installed with: bower install socket.io --save And added the following line to my Brocfile.js: app.import('bower_components/socket.io/index.js'); This results in two errors in my browser…
Felix
  • 3,783
  • 5
  • 34
  • 53
1
vote
1 answer

How can I display local date with ember-cli-bootstrap-datepicker in the input field?

When using ember-cli-bootstrap-datepicker the date I select on the calendar is not the date that displays on the input field when the calendar closes. It's the date selected -1 day. However, I have another field that is bound to the same property…
1
vote
1 answer

Am I using ember-cli-bootstrap-sass wrong?

I have a new ember-cli 0.2.0 app and I am trying to put bootstrap. The steps I followed are: 1) Install this npm package https://www.npmjs.com/package/ember-cli-bootstrap-sass 2) installed broccoli-sass 3) Put @import "bootstrap"; in my app.scss…
JohnDel
  • 2,092
  • 8
  • 35
  • 64
1
vote
0 answers

ember cli freezes on IE11 says not responding due to long running script

The home page loads, but then when I log in the app freezes. It works on IE10.I ran a profile with F12 and I can't seem to narrow down why it's taking so long. Can anyone please help me debug this?
monty_lennie
  • 2,871
  • 2
  • 29
  • 49
1
vote
0 answers

Ember build for production failed - Unexpected character '#'... how can I find it?

When I ember build or ember server, no issues. When I try to ember build --environment=production, I get this: version: 0.2.0 Build failed. Unexpected character '#' Error at new JS_Parse_Error…
1
vote
2 answers

Ember-Cli SASS Settings

I am using ember-cli-sass instead of broccoli-ruby-sass These are the steps i have done npm install --save-dev ember-cli-sass bower install --save foundation I am getting this error in the console after i started the ember server I don't…
Koala7
  • 1,340
  • 7
  • 41
  • 83
1
vote
1 answer

queryParams refresh model when changing a slider range

Basically I am having a search model which have many criterias. now I am setting up a range sliders to filter price with min and max value as showing in the picture bellow, I want to refresh the model anytime I change the slider values. Any idea how…
Moh
  • 249
  • 3
  • 15
1
vote
0 answers

Programmatically adding Component into other Component lost all properties

I'm using ember-cli (Ember: 1.10.0) and want to create a modal container which will act like a stack of modals. Each modal is a component and they could interact to the previous/next one. My code is like modal-container var ModalContainer =…
Ray Wu
  • 993
  • 16
  • 34
1
vote
0 answers

ember-cli-blanket not working

I have installed the plugin for 'ember-cli-blanket', using command: ember install:addon ember-cli-blanket0 But when I run the tests using "http://localhost:4200/tests", nothing is loading I am getting just a blank page, no error in console…
Vineeth Koppai
  • 141
  • 1
  • 6
1
vote
1 answer

Rails always returning 401 when using ember-cli-simple-auth-devise

Very new to programming in general, little experience with Rails and very little to no experience with ember. I may be taking embers "build ambitious web apps" too ambitiously at the moment. I can not get authentication with Devise setup properly.…