Skip to content

Commit

Permalink
Merge pull request #1806 from SomMeri/rhino
Browse files Browse the repository at this point in the history
rhino version not up to date (#1405)
  • Loading branch information
lukeapage committed Jan 21, 2014
2 parents f92c169 + d203ef3 commit 9a0f813
Show file tree
Hide file tree
Showing 26 changed files with 9,958 additions and 75 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ lessc text eol=lf
*.less text eol=lf
*.css text eol=lf
*.htm text eol=lf
gradlew.bat text eol=crlf
*.html text eol=lf

*.jpg binary
*.png binary
*.jpeg binary
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ test/sourcemaps/*.css

# grunt
.grunt

# gradle
.gradle
out
11 changes: 8 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ module.exports = function(grunt) {
},
"sourcemap-test": {
command: [
'node bin/lessc --source-map --source-map-inline test/less/import.less test/sourcemaps/import.css',
'node bin/lessc --source-map --source-map-inline test/less/sourcemaps/basic.less test/sourcemaps/basic.css',
'node bin/lessc --source-map --source-map-map-inline test/less/import.less test/sourcemaps/import.css',
'node bin/lessc --source-map --source-map-map-inline test/less/sourcemaps/basic.less test/sourcemaps/basic.css',
'node node_modules/http-server/bin/http-server test/sourcemaps -p 8084'].join('&&')
}
},
Expand Down Expand Up @@ -95,7 +95,7 @@ module.exports = function(grunt) {
files: {
src: [
'Gruntfile.js',
'lib/**/*.js'
'lib/less/**/*.js'
]
}
},
Expand Down Expand Up @@ -232,6 +232,11 @@ module.exports = function(grunt) {
'uglify:stable'
]);

// Release Rhino Version
grunt.registerTask('rhino', [
'concat:rhino'
]);

// Run all browser tests
grunt.registerTask('browsertest', [
'browser',
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,4 @@ Licensed under the [Apache License](LICENSE).
[issues]: https://github.com/less/less.js/issues "GitHub Issues for Less.js"
[wiki]: https://github.com/less/less.js/wiki "The official wiki for Less.js"
[download]: https://github.com/less/less.js/zipball/master "Download Less.js"

Loading

0 comments on commit 9a0f813

Please sign in to comment.