mirror of
https://github.com/less/less.js.git
synced 2026-04-09 03:00:20 -04:00
1.4.2 release
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
# 1.4.2
|
||||
|
||||
2013-07-20
|
||||
|
||||
- if you don't pass a strict maths option, font size/line height options are output correctly again
|
||||
- npmignore now include .gitattributes
|
||||
- property names may include capital letters
|
||||
- various windows path fixes (capital letters, multiple // in a path)
|
||||
|
||||
# 1.4.1
|
||||
|
||||
2013-07-05
|
||||
|
||||
@@ -46,4 +46,4 @@ _Pull requests are encouraged!_
|
||||
## Developing
|
||||
If you want to take an issue just add a small comment saying you are having a go at something, so we don't get duplication.
|
||||
|
||||
Learn more about [developing Less.js](https://github.com/cloudhead/less.js/wiki/Developing-less.js).
|
||||
Learn more about [developing Less.js](https://github.com/less/less.js/wiki/Developing-less.js).
|
||||
|
||||
@@ -10,7 +10,7 @@ about
|
||||
|
||||
This is the JavaScript, and now official, stable version of LESS.
|
||||
|
||||
For more information on the language and usage visit [lesscss.org](http://lesscss.org). More information also available [in our wiki](https://github.com/cloudhead/less.js/wiki)
|
||||
For more information on the language and usage visit [lesscss.org](http://lesscss.org). More information also available [in our wiki](https://github.com/less/less.js/wiki)
|
||||
|
||||
license
|
||||
-------
|
||||
|
||||
5837
dist/less-1.4.2.js
vendored
Normal file
5837
dist/less-1.4.2.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
11
dist/less-1.4.2.min.js
vendored
Normal file
11
dist/less-1.4.2.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@ var path = require('path'),
|
||||
fs = require('fs');
|
||||
|
||||
var less = {
|
||||
version: [1, 4, 1],
|
||||
version: [1, 4, 2],
|
||||
Parser: require('./parser').Parser,
|
||||
importer: require('./parser').importer,
|
||||
tree: require('./tree'),
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "less",
|
||||
"version": "1.4.1",
|
||||
"version": "1.4.2",
|
||||
"description": "Leaner CSS",
|
||||
"homepage": "http://lesscss.org",
|
||||
"author": "Alexis Sellier <self@cloudhead.net>",
|
||||
@@ -8,11 +8,11 @@
|
||||
"The Core Less Team"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/cloudhead/less.js/issues"
|
||||
"url": "https://github.com/less/less.js/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/cloudhead/less.js.git"
|
||||
"url": "https://github.com/less/less.js.git"
|
||||
},
|
||||
"bin": {
|
||||
"lessc": "./bin/lessc"
|
||||
@@ -67,7 +67,7 @@
|
||||
"licenses": [
|
||||
{
|
||||
"type": "Apache v2",
|
||||
"url": "https://github.com/cloudhead/less.js/blob/master/LICENSE"
|
||||
"url": "https://github.com/less/less.js/blob/master/LICENSE"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user