gulp-livescript
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -0,1 +1,10 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
<a name="3.0.1"></a> | ||
## [3.0.1](https://github.com/tomchentw/gulp-livescript/compare/v3.0.0...v3.0.1) (2016-05-31) | ||
<a name="3.0.0"></a> | ||
@@ -259,3 +268,1 @@ # [3.0.0](https://github.com/tomchentw/gulp-livescript/compare/v2.4.1...v3.0.0) (2015-12-07) | ||
* **init:** scaffold glup plugin with LiveScript support ([dc917bfd74737a381bef64f8220e53f2eee46b41](https://github.com/tomchentw/gulp-livescript/commit/dc917bfd74737a381bef64f8220e53f2eee46b41)) | ||
@@ -25,3 +25,3 @@ "use strict"; | ||
} | ||
prototype.transformFn = function(file, enc, done){ | ||
VinylLSConverter.prototype.transformFn = function(file, enc, done){ | ||
var ref$, error, clonedFile; | ||
@@ -34,3 +34,3 @@ ref$ = this._convert(file), error = ref$[0], clonedFile = ref$[1]; | ||
}; | ||
prototype._convert = function(file){ | ||
VinylLSConverter.prototype._convert = function(file){ | ||
if (file.isNull()) { | ||
@@ -44,3 +44,3 @@ return [null, file]; | ||
}; | ||
prototype._tryConvertToJS = function(clonedFile){ | ||
VinylLSConverter.prototype._tryConvertToJS = function(clonedFile){ | ||
var json, input, options, tokens, ast, clonedFilename, filename, output, result, error; | ||
@@ -82,3 +82,3 @@ try { | ||
}; | ||
prototype._convertFilepath = function(clonedFile){ | ||
VinylLSConverter.prototype._convertFilepath = function(clonedFile){ | ||
var dirname, filename, json, newFilename; | ||
@@ -85,0 +85,0 @@ dirname = Path.dirname(clonedFile.path); |
{ | ||
"name": "gulp-livescript", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Compile livescript to JavaScript for Gulp", | ||
@@ -8,8 +8,13 @@ "main": "lib/index.js", | ||
"build": "lsc --no-header -b -c -o ./lib ./src/*", | ||
"test": "mocha test/main.ls --require should --compilers ls:livescript", | ||
"dev": "mocha test/main.ls --require should --watch --compilers ls:livescript", | ||
"dev_install": "npm install && npm dedupe", | ||
"test_travis": "istanbul cover _mocha -- test/main.ls --require should --compilers ls:livescript", | ||
"coverage_travis": "codeclimate < coverage/lcov.info" | ||
"test:cov": "cross-env NODE_ENV=test istanbul cover _mocha --report lcov -- $npm_package_config_mocha", | ||
"test:watch": "npm test -- --watch", | ||
"test": "cross-env NODE_ENV=test mocha $npm_package_config_mocha", | ||
"prerelease": "npm run build && git add -A && git commit -m 'chore(lib): compile from src using lsc'", | ||
"release": "standard-version" | ||
}, | ||
"config": { | ||
"mocha": "--compilers ls:livescript test/main.ls --require should" | ||
}, | ||
"repository": { | ||
@@ -43,12 +48,13 @@ "type": "git", | ||
"devDependencies": { | ||
"livescript": "^1.4.0", | ||
"codeclimate-test-reporter": "0.1.1", | ||
"codeclimate-test-reporter": "^0.3.1", | ||
"cross-env": "^1.0.8", | ||
"gulp-sourcemaps": "^1.5.1", | ||
"istanbul": "^0.4.1", | ||
"livescript": "^1.4.0", | ||
"mocha": "^2.0.1", | ||
"mocha-jscs": "^4.0.0", | ||
"mocha-jscs": "^5.0.1", | ||
"mocha-jshint": "^2.2.5", | ||
"should": "^7.1.1", | ||
"tomchentw-npm-dev": "^3.2.0" | ||
"should": "^9.0.0", | ||
"standard-version": "^2.2.1" | ||
} | ||
} | ||
} |
27082
10