diff --git a/.jsbeautifyrc b/.jsbeautifyrc index ed9514a..9fc7b24 100644 --- a/.jsbeautifyrc +++ b/.jsbeautifyrc @@ -1,20 +1,19 @@ { - "indent_with_tabs": false, - "indent_size": 4, - "indent_level": 0, - "preserve_newlines": true, - "max_preserve_newlines": 4, - "space_in_paren": true, - "space_before_conditional": true, - "jslint_happy": false, - "brace_style": "collapse", - "keep_array_indentation": false, - "keep_function_indentation": false, - "eval_code": false, - "unescape_strings": false, - "break_chained_methods": false, - "e4x": false, - "wrap_line_length": 0, - "good_stuff": true, - "brace_style": "collapse-preserve-inline" -} + "indent_with_tabs": false, + "indent_size": 4, + "indent_level": 0, + "preserve_newlines": true, + "max_preserve_newlines": 4, + "space_in_paren": true, + "space_before_conditional": true, + "jslint_happy": false, + "keep_array_indentation": false, + "keep_function_indentation": false, + "eval_code": false, + "unescape_strings": false, + "break_chained_methods": false, + "e4x": false, + "wrap_line_length": 0, + "good_stuff": true, + "brace_style": "collapse,preserve-inline" +} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f9f794..2a9306e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +[1.0.3] - 2017-01-03 +--------------------- +##### Changed +- Executable-friendly version of enketo-xslt + +##### Fixed +- Cannot build on Windows + [1.0.2] - 2017-12-20 --------------------- ##### Changed diff --git a/package-lock.json b/package-lock.json index 30b73ac..94c6ba7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "enketo-validate", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -777,9 +777,9 @@ } }, "enketo-xslt": { - "version": "1.15.4", - "resolved": "https://registry.npmjs.org/enketo-xslt/-/enketo-xslt-1.15.4.tgz", - "integrity": "sha512-xqwWTJ/Ox5B4ORnlIZWhmMFmbiP+xxOKhvvUtOqNkfcUcuKjk9UvphpmpUiHFOMu1JrWM+2xjO47BymR+BjEDQ==" + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/enketo-xslt/-/enketo-xslt-1.15.5.tgz", + "integrity": "sha512-kLwMTxj8D9OVhphfSUs8C6dtYOBpgH+gYD5yRbWr51cyCOOgMIQ0m+o+ShVHKS9HigW7JezcfnU+N7MncM24pQ==" }, "escape-string-regexp": { "version": "1.0.5", @@ -1253,9 +1253,9 @@ } }, "libxslt": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/libxslt/-/libxslt-0.7.0.tgz", - "integrity": "sha512-lVzTGnCWVdSnLkMp7DIWt1dLsNp7XACvG4K/7XC65hrflm96aFKtc3vVN0JJxjToDRphnVwGHrFWLmIT3GKqGA==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/libxslt/-/libxslt-0.6.5.tgz", + "integrity": "sha1-AUTEehhx0XKvb2q41UB05ciSSBg=", "requires": { "bindings": "1.2.1", "libxmljs-mt": "0.18.0", diff --git a/package.json b/package.json index 2308334..fda7773 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "enketo-validate", - "version": "1.0.2", + "version": "1.0.3", "description": "An XForm validator around Enketo's form engine", "main": "src/validator.js", "scripts": { @@ -26,9 +26,9 @@ "homepage": "https://github.com/enketo/enketo-validate#readme", "dependencies": { "commander": "^2.12.2", - "enketo-xslt": "^1.15.1", + "enketo-xslt": "^1.15.5", "jsdom": "^11.5.1", - "libxslt": "^0.7.0" + "libxslt": "0.6.5" }, "devDependencies": { "aliasify": "^2.1.0", @@ -43,4 +43,4 @@ "enketo-xpathjs": "enketo-xpathjs-oc" } } -} +} \ No newline at end of file diff --git a/test/spec/xform.spec.js b/test/spec/xform.spec.js index 64efd3f..6c7cea5 100644 --- a/test/spec/xform.spec.js +++ b/test/spec/xform.spec.js @@ -1,4 +1,5 @@ -/* global describe, it*/ +/* eslint-env mocha */ + 'use strict'; const validator = require( '../../src/validator' ); @@ -83,4 +84,4 @@ describe( 'XForm', () => { } ); } ); -} ); +} ); \ No newline at end of file diff --git a/test/spec/xml.spec.js b/test/spec/xml.spec.js index 7ef9760..f2cf13e 100644 --- a/test/spec/xml.spec.js +++ b/test/spec/xml.spec.js @@ -1,4 +1,5 @@ -/* global describe, it*/ +/* eslint-env mocha */ + 'use strict'; const validator = require( '../../src/validator' ); @@ -37,4 +38,4 @@ describe( 'XML', () => { } ); } ); -} ); +} ); \ No newline at end of file diff --git a/test/spec/xpath.spec.js b/test/spec/xpath.spec.js index 1eeaa22..a10a04d 100644 --- a/test/spec/xpath.spec.js +++ b/test/spec/xpath.spec.js @@ -1,4 +1,4 @@ -/* global describe, xdescribe, it*/ +/* eslint-env mocha */ 'use strict'; const { XForm } = require( '../../src/xform' ); @@ -108,4 +108,4 @@ describe( 'XPath expressions', () => { } ); } ); -} ); +} ); \ No newline at end of file