gettext-parser
Advanced tools
Comparing version 4.0.4 to 4.1.0
# Change Log | ||
**Note:** since version 4.0.0, the changelog moved to the GitHub [releases](https://github.com/smhg/gettext-parser/releases) page. | ||
## [4.0.0-alpha.1] - 2019-03-17 | ||
@@ -90,2 +92,2 @@ - Fix header title casing same when parsing (compiling fixed in 4.0.0-alpha.0) | ||
[1.0.0]: https://github.com/smhg/gettext-parser/compare/v0.2.0...v1.0.0 | ||
[0.2.0]: https://github.com/smhg/gettext-parser/compare/v0.1.10...v0.2.0 | ||
[0.2.0]: https://github.com/smhg/gettext-parser/compare/v0.1.10...v0.2.0 |
18
index.js
const { parse, stream } = require('./lib/poparser'); | ||
module.exports = { | ||
po: { | ||
parse, | ||
createParseStream: stream, | ||
compile: require('./lib/pocompiler') | ||
}, | ||
module.exports.po = { | ||
parse, | ||
createParseStream: stream, | ||
compile: require('./lib/pocompiler') | ||
}; | ||
mo: { | ||
parse: require('./lib/moparser'), | ||
compile: require('./lib/mocompiler') | ||
} | ||
module.exports.mo = { | ||
parse: require('./lib/moparser'), | ||
compile: require('./lib/mocompiler') | ||
}; |
{ | ||
"name": "gettext-parser", | ||
"description": "Parse and compile gettext po and mo files to/from json, nothing more, nothing less", | ||
"version": "4.0.4", | ||
"version": "4.1.0", | ||
"author": "Andris Reinman", | ||
@@ -32,10 +32,9 @@ "contributors": [ | ||
"devDependencies": { | ||
"chai": "^4.2.0", | ||
"eslint": "^7.4.0", | ||
"eslint-config-standard": "^14.1.1", | ||
"eslint-plugin-import": "^2.22.0", | ||
"chai": "4.3.4", | ||
"eslint": "^7.32.0", | ||
"eslint-config-standard": "^16.0.3", | ||
"eslint-plugin-import": "^2.25.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"mocha": "^8.0.1" | ||
"eslint-plugin-promise": "^5.1.1", | ||
"mocha": "^9.1.3" | ||
}, | ||
@@ -42,0 +41,0 @@ "keywords": [ |
@@ -1,2 +0,2 @@ | ||
gettext-parser [![Build Status](https://secure.travis-ci.org/smhg/gettext-parser.png)](http://travis-ci.org/smhg/gettext-parser) | ||
gettext-parser [![ci](https://github.com/smhg/gettext-parser/actions/workflows/ci.yml/badge.svg)](https://github.com/smhg/gettext-parser/actions/workflows/ci.yml) | ||
============== | ||
@@ -3,0 +3,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
50608
7
11
1179