mirror of
https://github.com/less/less.js.git
synced 2026-01-22 13:48:03 -05:00
1.5.0 beta 1
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
# 1.5.0 WIP
|
||||
# 1.5.0 Beta 1
|
||||
|
||||
2013-09-01
|
||||
|
||||
- sourcemap support
|
||||
- support for import inline option to include css that you do NOT want less to parse e.g. `@import (inline) "file.css";`
|
||||
@@ -16,6 +18,7 @@
|
||||
- switched from the little supported and buggy cssmin (previously ycssmin) to clean-css
|
||||
- Browser: added logLevel option to control logging (2 = everything, 1 = errors only, 0 = no logging)
|
||||
- Browser: added errorReporting option which can be "html" (default) or "console" or a function
|
||||
- A few bug fixes for media queries and extends
|
||||
|
||||
# 1.4.2
|
||||
|
||||
|
||||
6660
dist/less-1.5.0.js
vendored
Normal file
6660
dist/less-1.5.0.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
11
dist/less-1.5.0.min.js
vendored
Normal file
11
dist/less-1.5.0.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, 5, 0],
|
||||
version: [1, 5, "0-b1"],
|
||||
Parser: require('./parser').Parser,
|
||||
tree: require('./tree'),
|
||||
render: function (input, options, callback) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "less",
|
||||
"version": "1.5.0",
|
||||
"version": "1.5.0-b1",
|
||||
"description": "Leaner CSS",
|
||||
"homepage": "http://lesscss.org",
|
||||
"author": "Alexis Sellier <self@cloudhead.net>",
|
||||
@@ -22,7 +22,7 @@
|
||||
"test": "./test"
|
||||
},
|
||||
"jam": {
|
||||
"main": "./dist/less-1.5.0.js"
|
||||
"main": "./dist/less-1.4.2.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.4.2"
|
||||
|
||||
Reference in New Issue
Block a user