Skip to content

Commit b8ace47

Browse files
committed
Update files pattern
1 parent 460aac7 commit b8ace47

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/_tools/docs/www/benchmark-bundles/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The function accepts the following `options`:
5151

5252
- **dir**: root directory from which to search for packages. May be either an absolute path or a path relative to the current working directory. Default: current working directory.
5353
- **packages_pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
54-
- **files_pattern**: glob pattern used to find benchmark files within a package. Default: `'**/benchmark/**/benchmark*.js'`.
54+
- **files_pattern**: glob pattern used to find benchmark files within a package. Default: `'benchmark/**/benchmark*.js'`.
5555
- **ignore**: list of glob patterns used to exclude package matches.
5656
- **bundle**: output bundle file name. Default: `'benchmark_bundle.js'`.
5757
- **html**: output HTML file name which loads a benchmark bundle. Default: `'benchmark.html'`.

lib/node_modules/@stdlib/_tools/docs/www/benchmark-bundles/lib/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"ignore": [],
66
"mount": "/",
77
"packages_pattern": "**/package.json",
8-
"files_pattern": "**/benchmark/**/benchmark*.js",
8+
"files_pattern": "benchmark/**/benchmark*.js",
99
"title": ""
1010
}

lib/node_modules/@stdlib/_tools/docs/www/benchmark-bundles/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var debug = logger( 'benchmark-bundles:async' );
5050
* @param {StringArray} [options.ignore=[]] - ignore patterns
5151
* @param {string} [options.mount='/'] - base URL mount
5252
* @param {Object} [options.packages_pattern='**\/package.json'] - glob pattern
53-
* @param {Object} [options.files_pattern='**\/benchmark\/**\/benchmark*.js'] - glob pattern
53+
* @param {Object} [options.files_pattern='benchmark\/**\/benchmark*.js'] - glob pattern
5454
* @param {string} [options.title='benchmark.html'] - HTML title
5555
* @param {Function} clbk - callback
5656
* @throws {TypeError} first argument must be a string

lib/node_modules/@stdlib/_tools/docs/www/test-bundles/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The function accepts the following `options`:
5151

5252
- **dir**: root directory from which to search for packages. May be either an absolute path or a path relative to the current working directory. Default: current working directory.
5353
- **packages_pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
54-
- **files_pattern**: glob pattern used to find test files within a package. Default: `'**/test/**/test*.js'`.
54+
- **files_pattern**: glob pattern used to find test files within a package. Default: `'test/**/test*.js'`.
5555
- **ignore**: list of glob patterns used to exclude package matches.
5656
- **bundle**: output bundle file name. Default: `'test_bundle.js'`.
5757
- **html**: output HTML file name which loads a test bundle. Default: `'test.html'`.

lib/node_modules/@stdlib/_tools/docs/www/test-bundles/lib/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"ignore": [],
66
"mount": "/",
77
"packages_pattern": "**/package.json",
8-
"files_pattern": "**/test/**/test*.js",
8+
"files_pattern": "test/**/test*.js",
99
"title": ""
1010
}

lib/node_modules/@stdlib/_tools/docs/www/test-bundles/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var debug = logger( 'test-bundles:async' );
5050
* @param {StringArray} [options.ignore=[]] - ignore patterns
5151
* @param {string} [options.mount='/'] - base URL mount
5252
* @param {Object} [options.packages_pattern='**\/package.json'] - glob pattern
53-
* @param {Object} [options.files_pattern='**\/test\/**\/test*.js'] - glob pattern
53+
* @param {Object} [options.files_pattern='test\/**\/test*.js'] - glob pattern
5454
* @param {string} [options.title='test.html'] - HTML title
5555
* @param {Function} clbk - callback
5656
* @throws {TypeError} first argument must be a string

0 commit comments

Comments
 (0)