@ryanatkn/gro 0.120.0 → 0.120.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gen.js +2 -1
- package/dist/package.js +2 -2
- package/dist/task.js +2 -1
- package/package.json +1 -1
package/dist/gen.js
CHANGED
|
@@ -151,7 +151,8 @@ export const find_genfiles = async (input_paths, root_dirs, config, timings) =>
|
|
|
151
151
|
}
|
|
152
152
|
// Find all of the files for any directories.
|
|
153
153
|
const timing_to_search_fs = timings?.start('find files');
|
|
154
|
-
const { resolved_input_files, resolved_input_files_by_input_path, resolved_input_files_by_root_dir, input_directories_with_no_files, } = await resolve_input_files(resolved_input_paths, (id) => search_fs(id, {
|
|
154
|
+
const { resolved_input_files, resolved_input_files_by_input_path, resolved_input_files_by_root_dir, input_directories_with_no_files, } = await resolve_input_files(resolved_input_paths, (id, options) => search_fs(id, {
|
|
155
|
+
...options,
|
|
155
156
|
filter: config.search_filters,
|
|
156
157
|
file_filter: (p) => extensions.some((e) => p.includes(e)),
|
|
157
158
|
}));
|
package/dist/package.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// generated by src/lib/package.gen.ts
|
|
2
2
|
export const package_json = {
|
|
3
3
|
name: '@ryanatkn/gro',
|
|
4
|
-
version: '0.120.
|
|
4
|
+
version: '0.120.1',
|
|
5
5
|
description: 'task runner and toolkit extending SvelteKit',
|
|
6
6
|
motto: 'generate, run, optimize',
|
|
7
7
|
icon: '🌰',
|
|
@@ -256,7 +256,7 @@ export const package_json = {
|
|
|
256
256
|
};
|
|
257
257
|
export const src_json = {
|
|
258
258
|
name: '@ryanatkn/gro',
|
|
259
|
-
version: '0.120.
|
|
259
|
+
version: '0.120.1',
|
|
260
260
|
modules: {
|
|
261
261
|
'.': {
|
|
262
262
|
path: 'index.ts',
|
package/dist/task.js
CHANGED
|
@@ -47,7 +47,8 @@ export const find_tasks = async (input_paths, task_root_dirs, config, timings) =
|
|
|
47
47
|
}
|
|
48
48
|
// Find all of the files for any directories.
|
|
49
49
|
const timing_to_resolve_input_files = timings?.start('resolve input files');
|
|
50
|
-
const { resolved_input_files, resolved_input_files_by_input_path, resolved_input_files_by_root_dir, input_directories_with_no_files, } = await resolve_input_files(resolved_input_paths, (id) => search_fs(id, {
|
|
50
|
+
const { resolved_input_files, resolved_input_files_by_input_path, resolved_input_files_by_root_dir, input_directories_with_no_files, } = await resolve_input_files(resolved_input_paths, (id, options) => search_fs(id, {
|
|
51
|
+
...options,
|
|
51
52
|
filter: config.search_filters,
|
|
52
53
|
file_filter: (p) => TASK_FILE_SUFFIXES.some((s) => p.endsWith(s)),
|
|
53
54
|
}));
|