Skip to content

Commit 6a83fa1

Browse files
v1.2.0
1 parent db304f9 commit 6a83fa1

File tree

10 files changed

+45
-353
lines changed

10 files changed

+45
-353
lines changed

dist/index.js

Lines changed: 0 additions & 314 deletions
This file was deleted.

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const {lineTypes} = require('./src/helpers');
22

33
module.exports = {
4-
Ini: require('./src/ini'),
5-
IniSection: require('./src/iniSection'),
6-
IniLine: require('./src/iniLine'),
4+
IniLine: require('./src/IniLine'),
5+
IniSection: require('./src/IniSection'),
6+
Ini: require('./src/Ini'),
77
lineTypes: lineTypes
88
};

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "ini-api",
33
"description": "A clean class-based API for parsing, editing, and creating INI files.",
4-
"version": "1.1.1",
4+
"version": "1.2.0",
55
"author": "Mator",
6-
"homepage": "https://github.com/matortheeternal/ini-parser",
6+
"homepage": "https://github.com/matortheeternal/ini-api",
77
"license": "MIT",
88
"main": "./dist/index.js",
99
"keywords": [
@@ -14,7 +14,7 @@
1414
],
1515
"repository": {
1616
"type": "git",
17-
"url": "git+https://github.com/matortheeternal/ini-parser.git"
17+
"url": "git+https://github.com/matortheeternal/ini-api.git"
1818
},
1919
"jest": {
2020
"coverageDirectory": "./coverage/",

src/ini.js renamed to src/Ini.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
const {lineTypes, systemLineBreak} = require('./helpers');
1+
const {
2+
lineTypes, systemLineBreak, isBlankLine, isCommentLine, isSectionLine
3+
} = require('./helpers');
24
const IniSection = require('./IniSection');
35

46
class Ini {

src/iniLine.js renamed to src/IniLine.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const {
2-
quotedExpr, lineTypes, commentExpr, reservedWords
2+
quotedExpr, lineTypes, commentExpr, lineExpr, reservedWords
33
} = require('./helpers');
44

55
class IniLine {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const {sectionExpr} = require('./helpers');
2-
const IniLine = require('./iniLine');
2+
const IniLine = require('./IniLine');
33

44
class IniSection {
55
constructor(text = '') {

0 commit comments

Comments
 (0)