Skip to content

Commit

Permalink
fix: remove external
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Sep 2, 2023
1 parent df49397 commit 46ec894
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "extract-domain",
"version": "4.1.2",
"version": "4.1.3",
"description": "Extract domain name from URL",
"type": "module",
"source": "index.ts",
Expand All @@ -14,7 +14,7 @@
"author": "Bjarne Oeverli",
"license": "MIT",
"scripts": {
"build": "npm run pretty && microbundle -i extractDomain -f modern,esm,cjs --extrenal psl index.ts",
"build": "npm run pretty && microbundle -i extractDomain -f modern,esm,cjs index.ts",
"test": "mocha -R spec tests/",
"pretty": "prettier --tab-width=4 --print-width=100 --single-quote --trailing-comma=es5 --write *.ts *.ts",
"benchmark": "node benchmark/benchmark.js"
Expand Down
2 changes: 1 addition & 1 deletion tests/index.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'assert';
import extractDomain from '../dist/extract-domain.module.js';
import extractDomain from '../dist/extract-domain.modern.js';

const urls = [
'https://www.npmjs.com/package/extract-domain',
Expand Down

0 comments on commit 46ec894

Please sign in to comment.