[Pkg-javascript-commits] [less.js] 01/50: update readme and rename LESS to Less
Jonas Smedegaard
dr at jones.dk
Mon Oct 26 23:22:34 UTC 2015
This is an automated email from the git hooks/post-receive script.
js pushed a commit to annotated tag v1.7.1
in repository less.js.
commit 0c8e117b85fe410abc7d8816db2257363b12e9e3
Author: Luke Page <luke.a.page at gmail.com>
Date: Thu Feb 27 20:22:47 2014 +0000
update readme and rename LESS to Less
---
Gruntfile.js | 6 +++---
README.md | 4 ++--
bin/lessc | 2 +-
build/README.md | 2 +-
lib/less/parser.js | 2 +-
lib/less/rhino.js | 2 +-
test/index.js | 2 +-
7 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/Gruntfile.js b/Gruntfile.js
index c684401..27b4b91 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -16,7 +16,7 @@ module.exports = function(grunt) {
copyright: 'Copyright (c) 2009-<%= grunt.template.today("yyyy") %>',
banner:
'/*! \n' +
- ' * LESS - <%= pkg.description %> v<%= pkg.version %> \n' +
+ ' * Less - <%= pkg.description %> v<%= pkg.version %> \n' +
' * http://lesscss.org \n' +
' * \n' +
' * <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>> \n' +
@@ -64,7 +64,7 @@ module.exports = function(grunt) {
// Rhino
rhino: {
options: {
- banner: '/* LESS.js v<%= pkg.version %> RHINO | <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>> */\n\n',
+ banner: '/* Less.js v<%= pkg.version %> RHINO | <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>> */\n\n',
footer: '' // override task-level footer
},
src: ['<%= build.rhino %>'],
@@ -73,7 +73,7 @@ module.exports = function(grunt) {
// lessc for Rhino
rhinolessc: {
options: {
- banner: '/* LESS.js v<%= pkg.version %> RHINO | <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>> */\n\n',
+ banner: '/* Less.js v<%= pkg.version %> RHINO | <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>> */\n\n',
footer: '' // override task-level footer
},
src: ['<%= build.rhinolessc %>'],
diff --git a/README.md b/README.md
index c929b29..618e794 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
[![Build Status](https://travis-ci.org/less/less.js.png?branch=master)](https://travis-ci.org/less/less.js)
-# [Less.js v1.6.3](http://lesscss.org)
+# [Less.js v1.7.0](http://lesscss.org)
> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
-This is the JavaScript, and now official, stable version of Less.
+This is the JavaScript, official, stable version of Less.
## Getting Started
diff --git a/bin/lessc b/bin/lessc
index 7530b30..baaec1d 100755
--- a/bin/lessc
+++ b/bin/lessc
@@ -79,7 +79,7 @@ args = args.filter(function (arg) {
switch (arg) {
case 'v':
case 'version':
- console.log("lessc " + less.version.join('.') + " (LESS Compiler) [JavaScript]");
+ console.log("lessc " + less.version.join('.') + " (Less Compiler) [JavaScript]");
continueProcessing = false;
case 'verbose':
options.verbose = true;
diff --git a/build/README.md b/build/README.md
index 2665581..68c600f 100644
--- a/build/README.md
+++ b/build/README.md
@@ -3,7 +3,7 @@
> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
-This is the JavaScript, and now official, stable version of LESS.
+This is the JavaScript, official, stable version of Less.
## Getting Started
diff --git a/lib/less/parser.js b/lib/less/parser.js
index 91457ac..9a1bf7e 100644
--- a/lib/less/parser.js
+++ b/lib/less/parser.js
@@ -685,7 +685,7 @@ less.Parser = function Parser(env) {
//
// Ruleset -> Rule -> Value -> Expression -> Entity
//
- // Here's some LESS code:
+ // Here's some Less code:
//
// .class {
// color: #fff;
diff --git a/lib/less/rhino.js b/lib/less/rhino.js
index 0ff7aaf..2e4f51c 100644
--- a/lib/less/rhino.js
+++ b/lib/less/rhino.js
@@ -203,7 +203,7 @@ function writeFile(filename, content) {
switch (arg) {
case 'v':
case 'version':
- console.log("lessc " + less.version.join('.') + " (LESS Compiler) [JavaScript]");
+ console.log("lessc " + less.version.join('.') + " (Less Compiler) [JavaScript]");
continueProcessing = false;
break;
case 'verbose':
diff --git a/test/index.js b/test/index.js
index 1fb4b29..33e7963 100644
--- a/test/index.js
+++ b/test/index.js
@@ -14,7 +14,7 @@ function getErrorPathReplacementFunction(dir) {
};
}
-console.log("\n" + stylize("LESS", 'underline') + "\n");
+console.log("\n" + stylize("Less", 'underline') + "\n");
lessTester.runTestSet({strictMath: true, relativeUrls: true, silent: true});
lessTester.runTestSet({strictMath: true, strictUnits: true}, "errors/",
lessTester.testErrors, null, getErrorPathReplacementFunction("errors"));
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/less.js.git
More information about the Pkg-javascript-commits
mailing list