Skip to content

Commit

Permalink
chore(deps): update dependency emoji-regex to v10 (#7)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency emoji-regex to v10

* chore: fix emoji-regex imports

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Pierre Cavin <me@sherlox.io>
  • Loading branch information
renovate[bot] and sheerlox authored May 26, 2023
1 parent bc79c22 commit f5044f5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
14 changes: 10 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@semantic-release/release-notes-generator": "^11.0.1",
"ava": "^5.0.0",
"conventional-changelog": "^3.0.1",
"emoji-regex": "^8.0.0",
"emoji-regex": "^10.0.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-ava": "^14.0.0",
Expand Down
2 changes: 1 addition & 1 deletion test/aliases.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const test = require('ava');
const emojiRegex = require('emoji-regex/text');
const emojiRegex = require('emoji-regex');
const { length } = require('stringz');
const aliases = require('../aliases');
const { types, typesOrder } = require('../types');
Expand Down
2 changes: 1 addition & 1 deletion test/types.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const test = require('ava');
const emojiRegex = require('emoji-regex/text');
const emojiRegex = require('emoji-regex');
const { length } = require('stringz');
const { types, typesOrder } = require('../types');

Expand Down

0 comments on commit f5044f5

Please sign in to comment.