-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from the-t-in-rtf/FLUID-6524
Self-merging by agreement with reviewer.
- Loading branch information
Showing
8 changed files
with
91 additions
and
123 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* eslint-env node */ | ||
"use strict"; | ||
var fluid = require("infusion"); | ||
fluid.module.register("gpii-glob", __dirname, require); | ||
fluid.module.register("fluid-glob", __dirname, require); | ||
|
||
require("./src/js/glob.js"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"name": "gpii-glob", | ||
"version": "1.0.1", | ||
"description": "A library to standardise resolving \"globbed\" file patterns within GPII projects.", | ||
"name": "fluid-glob", | ||
"version": "1.0.2", | ||
"description": "A library to standardise resolving \"globbed\" file patterns within Fluid projects.", | ||
"main": "index.js", | ||
"scripts": { | ||
"pretest": "node node_modules/rimraf/bin.js coverage/* reports/*", | ||
"test": "node node_modules/nyc/bin/nyc.js node tests/all-tests.js" | ||
}, | ||
"repository": "https://github.com/GPII/gpii-glob.git", | ||
"repository": "https://github.com/fluid-project/fluid-glob.git", | ||
"author": "Tony Atkins <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"homepage": "https://github.com/GPII/gpii-glob#readme", | ||
"homepage": "https://github.com/fluid-project/fluid-glob#readme", | ||
"dependencies": { | ||
"infusion": "3.0.0-dev.20180801T212157Z.09bf3d438", | ||
"infusion": "3.0.0-dev.20200326T173810Z.24ddb2718", | ||
"minimatch": "3.0.4" | ||
}, | ||
"devDependencies": { | ||
"eslint": "5.1.0", | ||
"eslint-config-fluid": "1.3.0", | ||
"gpii-grunt-lint-all": "1.0.1-dev.20180706T153657Z.4cbbd61", | ||
"grunt": "1.0.3", | ||
"mkdirp": "0.5.1", | ||
"eslint": "7.4.0", | ||
"eslint-config-fluid": "1.4.0", | ||
"fluid-grunt-lint-all": "1.0.8-dev.20200707T084514Z.e9e8d1d.FLUID-6524", | ||
"grunt": "1.2.0", | ||
"mkdirp": "1.0.4", | ||
"node-jqunit": "1.1.8", | ||
"nyc": "13.0.1", | ||
"rimraf": "2.6.2" | ||
"nyc": "15.1.0", | ||
"rimraf": "3.0.2" | ||
} | ||
} |
Oops, something went wrong.