Skip to content

Commit ec7288f

Browse files
committed
feat: add license field and update standard ignore patterns in package.json
1 parent 5d8ea40 commit ec7288f

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

package-lock.json

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

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
"bugs": {
2929
"url": "https://github.com/hackmdio/emojify.js/issues"
3030
},
31+
"standard": {
32+
"ignore": [
33+
"dist/",
34+
"tests/**/*.js",
35+
"karma.conf.js"
36+
]
37+
},
3138
"devDependencies": {
3239
"@open-wc/karma-esm": "^4.0.0",
3340
"@rollup/plugin-replace": "^6.0.2",

tests/node.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import jsdom from "jsdom-global";
2-
import { assert } from "chai";
3-
import emojify from "../dist/js/index.min.js";
1+
import jsdom from 'jsdom-global'
2+
import { assert } from 'chai'
3+
import emojify from '../dist/js/index.min.js'
44

5-
jsdom();
5+
jsdom()
66

7-
global.assert = assert;
7+
global.assert = assert
88
global.emojify = emojify

0 commit comments

Comments
 (0)