Skip to content

Commit

Permalink
Ported some YAML config files to JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Jun 10, 2019
1 parent 6b5ab24 commit d0a007d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
7 changes: 7 additions & 0 deletions etc/mocha.json
@@ -0,0 +1,7 @@
{
"check-leaks": true,
"recursive": true,
"reporter": "spec",
"require": "esm",
"ui": "bdd"
}
5 changes: 0 additions & 5 deletions etc/mocha.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions etc/nyc.json
@@ -0,0 +1,6 @@
{
"all": true,
"include": ["lib/**/*.js"],
"report-dir": "var",
"reporter": ["lcovonly"]
}
5 changes: 0 additions & 5 deletions etc/nyc.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion etc/rollup.js
Expand Up @@ -2,7 +2,7 @@ import {join} from 'path';
import resolve from 'rollup-plugin-node-resolve';

export default {
input: join(__dirname, '../lib/index.mjs'),
input: join(__dirname, '../lib/index.js'),
output: {file: join(__dirname, '../build/enum.js'), format: 'iife', name: 'window', extend: true},
plugins: [resolve()]
};

0 comments on commit d0a007d

Please sign in to comment.