Skip to content

Commit 3653f5c

Browse files
Modernize to be an esm module, change tests to jasmine, use c8 for coverage
1 parent 03d828f commit 3653f5c

File tree

18 files changed

+830
-6379
lines changed

18 files changed

+830
-6379
lines changed

.c8rc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"reporter": ["lcov", "text"],
3+
"report-dir": "./coverage",
4+
"exclude": [
5+
"tests/**",
6+
"node_modules/**"
7+
],
8+
"check-coverage": false,
9+
"skip_empty": true
10+
}

.github/workflows/tests.yml

Whitespace-only changes.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules/
22
.idea/
33
*.zip
4-
54
coverage/

.travis.yml

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

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# ini-api ![](https://travis-ci.org/matortheeternal/ini-api.svg?branch=master) [![codecov](https://codecov.io/gh/matortheeternal/ini-api/branch/master/graph/badge.svg)](https://codecov.io/gh/matortheeternal/ini-api)
1+
# ini-api
2+
[![Tests](https://github.com/matortheeternal/ini-api/actions/workflows/tests.yml/badge.svg)](https://github.com/matortheeternal/ini-api/actions/workflows/tests.yml) [![codecov](https://codecov.io/gh/matortheeternal/ini-api/branch/master/graph/badge.svg)](https://codecov.io/gh/matortheeternal/ini-api)
3+
24
A clean class-based API for parsing, editing, and creating INI files.
35

46
# Table of contents

index.js

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

jasmine.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"spec_dir": ".",
3+
"spec_files": [
4+
"test/**/*.test.js"
5+
],
6+
"random": false,
7+
"stopSpecOnExpectationFailure": false
8+
}

0 commit comments

Comments
 (0)