Skip to content

Commit

Permalink
changed: executable-friendly update of enketo-xslt
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnR committed Jan 3, 2018
1 parent 82796be commit 00bbb05
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 36 deletions.
37 changes: 18 additions & 19 deletions .jsbeautifyrc
Original file line number Diff line number Diff line change
@@ -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"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand All @@ -43,4 +43,4 @@
"enketo-xpathjs": "enketo-xpathjs-oc"
}
}
}
}
5 changes: 3 additions & 2 deletions test/spec/xform.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* global describe, it*/
/* eslint-env mocha */

'use strict';

const validator = require( '../../src/validator' );
Expand Down Expand Up @@ -83,4 +84,4 @@ describe( 'XForm', () => {
} );
} );

} );
} );
5 changes: 3 additions & 2 deletions test/spec/xml.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* global describe, it*/
/* eslint-env mocha */

'use strict';

const validator = require( '../../src/validator' );
Expand Down Expand Up @@ -37,4 +38,4 @@ describe( 'XML', () => {
} );
} );

} );
} );
4 changes: 2 additions & 2 deletions test/spec/xpath.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* global describe, xdescribe, it*/
/* eslint-env mocha */
'use strict';

const { XForm } = require( '../../src/xform' );
Expand Down Expand Up @@ -108,4 +108,4 @@ describe( 'XPath expressions', () => {
} );
} );

} );
} );

0 comments on commit 00bbb05

Please sign in to comment.