Skip to content

Commit

Permalink
Patch Update 1.8.4
Browse files Browse the repository at this point in the history
* OSI-26 - Upgrade libxmljs to version 0.19.10
* OSI-27 - Upgrade moment to version 2.29.3
  • Loading branch information
Manhydra committed May 10, 2022
1 parent 3a90332 commit d21b74e
Show file tree
Hide file tree
Showing 6 changed files with 544 additions and 699 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js
node_js:
- "14.19.1"
- "14.19.2"

before_script:
- npm install -g grunt-cli@1.4.3
- npm install -g grunt-cli
- npm install --quiet

#services:
Expand Down
14 changes: 9 additions & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ module.exports = function (grunt) {
}
},
run: {
jest: {
exec: 'npx jest',
args: ['test']
test: {
exec: 'npx jest'
},
coverage: {
exec: 'npx jest --coverage'
}
},
connect: {
Expand All @@ -75,9 +77,11 @@ module.exports = function (grunt) {
}
});

grunt.registerTask('default', ['beautify', 'jshint', 'run']);
grunt.registerTask('default', ['beautify', 'jshint', 'test']);
grunt.registerTask('beautify', ['jsbeautifier:beautify']);
grunt.registerTask('commit', ['default']);
grunt.registerTask('test', ['run:test']);
grunt.registerTask('coverage', ['run:coverage']);
grunt.registerTask('commit', ['jshint', 'test']);
grunt.registerTask('timestamp', function () {
grunt.log.subhead(Date());
});
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Blue Button XML

Blue Button XML Parsing Infrastructure

[![NPM](https://nodei.co/npm/blue-button-xml.png)](https://nodei.co/npm/blue-button-xml/)
[![NPM](https://nodei.co/npm/@amida-tech/blue-button-xml.png)](https://nodei.co/npm/@amida-tech/blue-button-xml/)

[![Build Status](https://travis-ci.org/amida-tech/blue-button-xml.svg)](https://travis-ci.org/amida-tech/blue-button-xml)
[![Coverage Status](https://coveralls.io/repos/amida-tech/blue-button-xml/badge.png)](https://coveralls.io/r/amida-tech/blue-button-xml)
Expand Down Expand Up @@ -39,7 +39,7 @@ grunt

Require blue-button-xml module
``` javascript
var bbxml = require("blue-button-xml");
var bbxml = require("@amida-tech/blue-button-xml");
```
and load some XML content in an `example.xml`
``` xml
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
// clearMocks: false,

// Indicates whether the coverage information should be collected while executing the test
collectCoverage: true,
collectCoverage: false,

// An array of glob patterns indicating a set of files for which coverage information should be collected
// collectCoverageFrom: undefined,
Expand Down
Loading

0 comments on commit d21b74e

Please sign in to comment.