I am using Ember 6.3.1
$ npm --version
10.9.2
$ ember --version
ember-cli: 6.3.1
node: 22.14.0
os: darwin arm64
I tried installing it:
ember install glimmer-scoped-css
🚧 Installing packages... This might take a couple of minutes.
npm: Installed glimmer-scoped-css
Install failed. Could not find addon with name: glimmer-scoped-css
However, it did update my package.json with:
"glimmer-scoped-css": "^0.8.0",
and found a similar change in the package-lock.json file as well.
The app I started with was created with
ember new frontend --typescript --lang en
and provided me with a ember-cli-build.js file:
'use strict';
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
module.exports = function (defaults) {
const app = new EmberApp(defaults, {
emberData: {
deprecations: {
// New projects can safely leave this deprecation disabled.
// If upgrading, to opt-into the deprecated behavior, set this to true and then follow:
// https://deprecations.emberjs.com/id/ember-data-deprecate-store-extends-ember-object
// before upgrading to Ember Data 6.0
DEPRECATE_STORE_EXTENDS_EMBER_OBJECT: false,
},
},
'ember-cli-babel': { enableTypeScriptTransform: true },
// Add options here
});
return app.toTree();
};
However, this does not match what the Installation section of the readme says it should be. I am guessing my Ember version is to new for this.
What version of Ember can I use so I can follow the instructions to use this addon? Or what are the instructions for getting this addon working with Ember 6.3?
I am using Ember 6.3.1
I tried installing it:
However, it did update my package.json with:
and found a similar change in the package-lock.json file as well.
The app I started with was created with
and provided me with a ember-cli-build.js file:
However, this does not match what the Installation section of the readme says it should be. I am guessing my Ember version is to new for this.
What version of Ember can I use so I can follow the instructions to use this addon? Or what are the instructions for getting this addon working with Ember 6.3?