properties-file 2.1.10 → 2.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/content/index.d.ts +2 -2
- package/lib/content/index.js +3 -5
- package/lib/file/index.d.ts +2 -2
- package/lib/file/index.js +5 -5
- package/lib/loader/webpack.d.ts +2 -1
- package/lib/loader/webpack.js +3 -3
- package/package.json +9 -8
package/lib/content/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { Properties } from '../properties';
|
|
|
7
7
|
*
|
|
8
8
|
* @returns A `Properties` object representing the content of a `.properties` file.
|
|
9
9
|
*/
|
|
10
|
-
export declare
|
|
10
|
+
export declare const getProperties: (content: string) => Properties;
|
|
11
11
|
/**
|
|
12
12
|
* Converts the content of a `.properties` file to JSON.
|
|
13
13
|
*
|
|
@@ -15,4 +15,4 @@ export declare function getProperties(content: string): Properties;
|
|
|
15
15
|
*
|
|
16
16
|
* @returns A (JSON) key/value object representing the content of a `.properties` file.
|
|
17
17
|
*/
|
|
18
|
-
export declare
|
|
18
|
+
export declare const propertiesToJson: (content: string) => KeyValueObject;
|
package/lib/content/index.js
CHANGED
|
@@ -11,7 +11,7 @@ var property_line_1 = require("../property-line");
|
|
|
11
11
|
*
|
|
12
12
|
* @returns A `Properties` object representing the content of a `.properties` file.
|
|
13
13
|
*/
|
|
14
|
-
function
|
|
14
|
+
var getProperties = function (content) {
|
|
15
15
|
// Remove BOM character if present and create an array from lines.
|
|
16
16
|
var lines = (content.codePointAt(0) === 0xfeff ? content.slice(1) : content).split(/\r?\n/);
|
|
17
17
|
/** Line number while parsing properties file content. */
|
|
@@ -46,7 +46,7 @@ function getProperties(content) {
|
|
|
46
46
|
property = properties.add(property);
|
|
47
47
|
}
|
|
48
48
|
return properties;
|
|
49
|
-
}
|
|
49
|
+
};
|
|
50
50
|
exports.getProperties = getProperties;
|
|
51
51
|
/**
|
|
52
52
|
* Converts the content of a `.properties` file to JSON.
|
|
@@ -55,7 +55,5 @@ exports.getProperties = getProperties;
|
|
|
55
55
|
*
|
|
56
56
|
* @returns A (JSON) key/value object representing the content of a `.properties` file.
|
|
57
57
|
*/
|
|
58
|
-
function
|
|
59
|
-
return getProperties(content).toJson();
|
|
60
|
-
}
|
|
58
|
+
var propertiesToJson = function (content) { return (0, exports.getProperties)(content).toJson(); };
|
|
61
59
|
exports.propertiesToJson = propertiesToJson;
|
package/lib/file/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export { KeyValueObject } from '../';
|
|
|
9
9
|
*
|
|
10
10
|
* @returns A `Properties` object representing the content of a `.properties` file.
|
|
11
11
|
*/
|
|
12
|
-
export declare
|
|
12
|
+
export declare const getProperties: (filePath: string, encoding?: BufferEncoding) => Properties;
|
|
13
13
|
/**
|
|
14
14
|
* Converts the content of a `.properties` file to JSON.
|
|
15
15
|
*
|
|
@@ -18,4 +18,4 @@ export declare function getProperties(filePath: string, encoding?: BufferEncodin
|
|
|
18
18
|
*
|
|
19
19
|
* @returns A (JSON) key/value object representing the content of a `.properties` file.
|
|
20
20
|
*/
|
|
21
|
-
export declare
|
|
21
|
+
export declare const propertiesToJson: (filePath: string, encoding?: BufferEncoding) => KeyValueObject;
|
package/lib/file/index.js
CHANGED
|
@@ -11,12 +11,12 @@ var content_1 = require("../content/");
|
|
|
11
11
|
*
|
|
12
12
|
* @returns A `Properties` object representing the content of a `.properties` file.
|
|
13
13
|
*/
|
|
14
|
-
function
|
|
14
|
+
var getProperties = function (filePath, encoding) {
|
|
15
15
|
if (!(0, node_fs_1.existsSync)(filePath)) {
|
|
16
16
|
throw new Error("file not found at ".concat(filePath));
|
|
17
17
|
}
|
|
18
18
|
return (0, content_1.getProperties)((0, node_fs_1.readFileSync)(filePath, encoding !== null && encoding !== void 0 ? encoding : 'utf8'));
|
|
19
|
-
}
|
|
19
|
+
};
|
|
20
20
|
exports.getProperties = getProperties;
|
|
21
21
|
/**
|
|
22
22
|
* Converts the content of a `.properties` file to JSON.
|
|
@@ -26,7 +26,7 @@ exports.getProperties = getProperties;
|
|
|
26
26
|
*
|
|
27
27
|
* @returns A (JSON) key/value object representing the content of a `.properties` file.
|
|
28
28
|
*/
|
|
29
|
-
function
|
|
30
|
-
return getProperties(filePath, encoding).toJson();
|
|
31
|
-
}
|
|
29
|
+
var propertiesToJson = function (filePath, encoding) {
|
|
30
|
+
return (0, exports.getProperties)(filePath, encoding).toJson();
|
|
31
|
+
};
|
|
32
32
|
exports.propertiesToJson = propertiesToJson;
|
package/lib/loader/webpack.d.ts
CHANGED
package/lib/loader/webpack.js
CHANGED
|
@@ -8,7 +8,7 @@ var content_1 = require("../content");
|
|
|
8
8
|
*
|
|
9
9
|
* @returns A Webpack file loader string containing the content of a `.properties` file.
|
|
10
10
|
*/
|
|
11
|
-
function
|
|
11
|
+
var webpackLoader = function (content) {
|
|
12
12
|
return "module.exports = ".concat(JSON.stringify((0, content_1.propertiesToJson)(content)), ";");
|
|
13
|
-
}
|
|
14
|
-
exports.default =
|
|
13
|
+
};
|
|
14
|
+
exports.default = webpackLoader;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "properties-file",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.12",
|
|
4
4
|
"description": ".properties file parser, JSON converter and Webpack loader.",
|
|
5
5
|
"author": "Avansai (https://avansai.com)",
|
|
6
6
|
"repository": {
|
|
@@ -53,19 +53,20 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@release-it/conventional-changelog": "^5.1.1",
|
|
56
|
-
"@types/jest": "^29.
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
58
|
-
"@typescript-eslint/parser": "^5.
|
|
56
|
+
"@types/jest": "^29.2.0",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^5.41.0",
|
|
58
|
+
"@typescript-eslint/parser": "^5.41.0",
|
|
59
59
|
"dotenv-cli": "^6.0.0",
|
|
60
|
-
"eslint": "^8.
|
|
60
|
+
"eslint": "^8.26.0",
|
|
61
61
|
"eslint-config-prettier": "^8.5.0",
|
|
62
62
|
"eslint-import-resolver-node": "^0.3.6",
|
|
63
|
-
"eslint-import-resolver-typescript": "^3.5.
|
|
63
|
+
"eslint-import-resolver-typescript": "^3.5.2",
|
|
64
64
|
"eslint-plugin-import": "^2.26.0",
|
|
65
|
-
"eslint-plugin-jest": "^27.1.
|
|
65
|
+
"eslint-plugin-jest": "^27.1.3",
|
|
66
|
+
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
|
|
66
67
|
"eslint-plugin-prettier": "^4.2.1",
|
|
67
68
|
"eslint-plugin-unicorn": "^44.0.2",
|
|
68
|
-
"jest": "^29.2.
|
|
69
|
+
"jest": "^29.2.2",
|
|
69
70
|
"prettier": "^2.7.1",
|
|
70
71
|
"prettier-plugin-organize-imports": "^3.1.1",
|
|
71
72
|
"prettier-plugin-sh": "^0.12.8",
|