Skip to content

Commit 16fd8a1

Browse files
committed
feat: publish hybrid package: CommonJS and ESM modules
1 parent fbb9089 commit 16fd8a1

File tree

7 files changed

+27
-33
lines changed

7 files changed

+27
-33
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
- run: npm run lint
1717
- run: npm run test
1818
- run: npm run build
19-
- run: npm run test:lib
19+
- run: npm run test:dist

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
npm-debug.log
22
node_modules
3-
/lib
3+
/dist

package-lock.json

-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+12-7
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,9 @@
2929
"devDependencies": {
3030
"@commitlint/cli": "^17.6.6",
3131
"@commitlint/config-conventional": "^17.6.6",
32-
"@types/colors": "^1.2.1",
3332
"@types/jest": "^29.5.2",
3433
"@typescript-eslint/eslint-plugin": "^5.60.0",
3534
"@typescript-eslint/parser": "^5.60.0",
36-
"colors": "*",
3735
"eslint": "^8.43.0",
3836
"eslint-config-prettier": "^8.8.0",
3937
"eslint-plugin-import": "^2.27.5",
@@ -52,15 +50,22 @@
5250
"type": "git",
5351
"url": "https://github.com/mdevils/css-selector-parser.git"
5452
},
55-
"main": "./lib/index.js",
56-
"typings": "./lib/index",
57-
"types": "./lib/index",
53+
"main": "./dist/cjs/index.js",
54+
"module": "./dist/mjs/index.js",
55+
"exports": {
56+
".": {
57+
"import": "./dist/mjs/index.js",
58+
"require": "./dist/cjs/index.js"
59+
}
60+
},
61+
"typings": "./dist/cjs/index",
62+
"types": "./dist/cjs/index",
5863
"license": "MIT",
5964
"scripts": {
60-
"build": "tsc",
65+
"build": "rm -Rf dist && tsc -p tsconfig.json && tsc -p tsconfig.mjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json && echo '{\"type\": \"module\"}' > dist/mjs/package.json",
6166
"build:docs": "rm -Rf docs && typedoc --excludeInternal --excludeExternals --disableSources --plugin typedoc-plugin-markdown --entryDocument ../README.md --out docs src/index.ts && ts-node tools/cleanup-docs.ts",
6267
"test": "jest test",
63-
"test:lib": "TEST_LIB=1 npm run test",
68+
"test:dist": "TEST_DIST=cjs npm run test",
6469
"lint": "eslint src/**.ts",
6570
"lint:fix": "eslint --fix src/**.ts",
6671
"benchmark": "ts-node benchmark/benchmark.ts",

test/import.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import * as Lib from '../src';
22

33
// eslint-disable-next-line @typescript-eslint/no-var-requires
4-
const {ast, render, createParser} = require(process.env.TEST_LIB ? '../lib' : '../src') as typeof Lib;
4+
const {ast, render, createParser} = require(process.env.TEST_DIST
5+
? `../dist/${process.env.TEST_DIST}`
6+
: '../src') as typeof Lib;
57

68
export {ast, render, createParser};

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"target": "es5",
44
"module": "commonjs",
55
"declaration": true,
6-
"outDir": "./lib",
6+
"outDir": "dist/cjs",
77
"strict": true
88
},
99
"include": ["src"],

tsconfig.mjs.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"outDir": "dist/mjs",
5+
"module": "esnext",
6+
"target": "esnext",
7+
"skipLibCheck": true
8+
}
9+
}

0 commit comments

Comments
 (0)