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 ../ globs #7

Merged
merged 1 commit into from
Nov 20, 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
15 changes: 12 additions & 3 deletions ember-classic-import-meta-glob/addon/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/* globals requirejs */
import { assert } from '@ember/debug';

import pico from 'picomatch';
import normalizePath from 'path-normalize';
import pico from 'picomatch/posix';

/**
* Only supported usage:
Expand Down Expand Up @@ -68,13 +69,14 @@ export function importMetaGlob(glob, options, modulePath) {
let globsArray = Array.isArray(glob) ? glob : [glob];

[...globsArray].forEach((g) => {
let extensionless = g.replace(/\.\w{2,3}$/, '');
let extensionless = g.replace(/\.\{?\w{2,}\}?$/, '');

globsArray.push(extensionless);
});

let fullGlobs = globsArray.map((g) => {
return `${currentDir}/${g.replace(/^.\//, '')}`;
// Collapses ./ and ../
return normalizePath(`${currentDir}/${g}`, /* allowAboveRoot */ false);
});
let isMatch = pico(fullGlobs);
let matches = allModules.filter(isMatch);
Expand Down Expand Up @@ -112,6 +114,13 @@ function isEscapingApp(path) {
let preUpCount = 0;
let upCount = 0;

// normalizePath will return the right-most path segment if you ../
// too many times. This is wrong for us.
// a plain 'module-name' (no slashes) is not importable in ember.
if (parts.length === 1) {
return true;
}

for (let part of parts) {
if (part === '..') {
upCount++;
Expand Down
1 change: 1 addition & 0 deletions ember-classic-import-meta-glob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"ember-auto-import": "^2.7.2",
"ember-cli-babel": "^8.2.0",
"ember-cli-babel-plugin-helpers": "^1.1.1",
"path-normalize": "^6.0.13",
"picomatch": "^4.0.2"
}
}
Loading
Loading