Skip to content
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
5 changes: 2 additions & 3 deletions features.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
'use strict';

const glob = require('glob');
const { globSync } = require('tinyglobby');
const path = require('path');

const FEATURES_PATH = path.resolve(__dirname, './features');
const FEATURES = {};

glob
.sync('*.js', { cwd: FEATURES_PATH })
globSync('*.js', { cwd: FEATURES_PATH })
.sort()
.forEach((filename) => {
let key = filename.slice(0, -3);
Expand Down
2 changes: 1 addition & 1 deletion features/template-only-glimmer-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

const { styleText } = require('node:util');
const fs = require('fs');
const globSync = require('glob').globSync;
const { globSync } = require('tinyglobby');
const { mkdirSync } = require('node:fs');
const p = require('util').promisify;
const path = require('path');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
},
"dependencies": {
"ember-cli-version-checker": "^5.1.2",
"glob": "^13.0.1",
"inquirer": "^13.2.2",
"silent-error": "^1.1.1"
"silent-error": "^1.1.1",
"tinyglobby": "^0.2.15"
},
"devDependencies": {
"broccoli-test-helper": "^2.0.0",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.