From 69a8cb113257db17f771922ebd9971becd95b4fa Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:38:23 -0400 Subject: [PATCH] Lint:fix --- ember-scoped-css/src/build/babel-plugin.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ember-scoped-css/src/build/babel-plugin.js b/ember-scoped-css/src/build/babel-plugin.js index efee0b63..fbb77d98 100644 --- a/ember-scoped-css/src/build/babel-plugin.js +++ b/ember-scoped-css/src/build/babel-plugin.js @@ -104,7 +104,8 @@ export default (env, options, workingDirectory) => { // it's tricky to support both when there are no standards // around managing these paths. // But also, in normal projects, they are not different paths. - let [,...parts] = cssPath.split('/'); + let [, ...parts] = cssPath.split('/'); + cssPath = ['app', ...parts].join('/'); if (!existsSync(cssPath)) {