From 8ac0994af7548b6ba689b8f1db8b2e3e5403d313 Mon Sep 17 00:00:00 2001 From: Caridy Patino Date: Tue, 12 Aug 2014 14:42:28 -0400 Subject: [PATCH] Bumping for 1.0.0 * update deps * update docs and history --- HISTORY.md | 12 +++++- lib/rulesets.js | 5 +-- package.json | 102 ++++++++++++++++++++++++------------------------ 3 files changed, 63 insertions(+), 56 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 169e542..89ed35f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,12 +1,20 @@ Locator Change History ====================== -# 1.0.0-rc-1 +# 1.0.0 -* **!IMPORTANT!** This release contains a notable backward-incompatible change.. +* **!IMPORTANT!** This release contains a notable backward-incompatible change. * **!Backwards-Incompatible Change!** sync version of locator without plugins. * **!Backwards-Incompatible Change!** removed support for nodejs 0.8.x. +### No more plugins + +The support for plugins was removed, and therefore, any build process for files +and resources should happen as a separate routine. This new version of locator can +be used by grunt/gulp/broccoli tasks to apply custom builds based on the semantic +of the application, in it can also be used during the runtime process as part of +application code to get the semantic of the source files and resources. + # 0.3.10 * Do not override an existing promise implementation with `ypromise`. This opens diff --git a/lib/rulesets.js b/lib/rulesets.js index e0c882f..f907def 100644 --- a/lib/rulesets.js +++ b/lib/rulesets.js @@ -14,8 +14,7 @@ module.exports = { // selectorKey has no default. selector is only used if selectorKey is given 'main': { - // This empty ruleset can be used by packages which have files that - // should be walked by plugins, but which don't otherwise contain - // resources. + // This empty ruleset can be used by packages with files but without + // explicit resources. } }; diff --git a/package.json b/package.json index 4048959..aa7625c 100644 --- a/package.json +++ b/package.json @@ -1,53 +1,53 @@ { - "name": "locator", - "description": "gives semantic meaning to filesystem paths", - "version": "1.0.0-rc-1", - "homepage": "https://github.com/yahoo/locator", - "keywords": [ - "filesystem", - "fs", - "mojito", - "modown" - ], - "repository": { - "type": "git", - "url": "https://github.com/yahoo/locator.git" - }, - - "author": "Drew Folta ", - "contributors": [ - "Isao Yagi ", - "Michael Ridgway ", - "Caridy Patino (http://github.com/caridy)", - "alberto chan " - ], - "license": "BSD", - - "main": "lib/bundleLocator.js", - "files": ["lib/"], - "directories": { - "lib": "./lib" - }, - "engines": { - "node": ">0.8", - "npm": ">1.0" - }, - "dependencies": { - "walk": "^2.3.1", - "semver": "^1.1.4" - }, - "devDependencies": { - "chai": "~1.6.1", - "istanbul": "*", - "jshint": "~0.9.0", - "mocha": "*", - "xunit-file": "*", - "yui-lint": "~0.1.3" - }, - "scripts": { - "cover": "istanbul cover -- _mocha tests/lib/ --reporter spec", - "lint": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/", - "pretest": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/", - "test": "_mocha tests/lib/ --reporter spec" - } + "name": "locator", + "description": "gives semantic meaning to filesystem paths", + "version": "1.0.0", + "homepage": "https://github.com/yahoo/locator", + "keywords": [ + "filesystem", + "fs", + "mojito", + "modown" + ], + "repository": { + "type": "git", + "url": "https://github.com/yahoo/locator.git" + }, + "author": "Drew Folta ", + "contributors": [ + "Isao Yagi ", + "Michael Ridgway ", + "Caridy Patino (http://github.com/caridy)", + "alberto chan " + ], + "license": "BSD", + "main": "lib/bundleLocator.js", + "files": [ + "lib/" + ], + "directories": { + "lib": "./lib" + }, + "engines": { + "node": ">0.8", + "npm": ">1.0" + }, + "dependencies": { + "walk": "^2.3.1", + "semver": "^1.1.4" + }, + "devDependencies": { + "chai": "^1.9.1", + "istanbul": "*", + "jshint": "^2.5.3", + "mocha": "*", + "xunit-file": "*", + "yui-lint": "^0.2.0" + }, + "scripts": { + "cover": "istanbul cover -- _mocha tests/lib/ --reporter spec", + "lint": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/", + "pretest": "jshint --config node_modules/yui-lint/jshint.json lib/ tests/lib/", + "test": "_mocha tests/lib/ --reporter spec" + } }