Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: proper ESM build with Babel #90

Merged
merged 10 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: ./.github/actions/setup

- name: Build package
run: yarn prepare
run: yarn build

test-website:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ buck-out/
# Turborepo
.turbo/

# generated by bob
lib/
# Build process
dist/

/.idea
coverage/
19 changes: 18 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-typescript'],
presets: [['@babel/preset-env', { targets: { node: 'current' } }], '@babel/preset-typescript'],

env: {
cjs: {
presets: [['@babel/preset-env', { targets: { node: 'current' }, modules: 'commonjs' }]],
plugins: [
['@babel/plugin-transform-modules-commonjs', { strict: true }],
['babel-plugin-add-import-extension', { extension: 'js' }],
],
ignore: ['**/__tests__/*', '**/test.ts', '**/*.d.ts'],
},

esm: {
presets: [['@babel/preset-env', { targets: { node: 'current' }, modules: false }]],
plugins: [['babel-plugin-add-import-extension', { extension: 'mjs' }]],
ignore: ['**/__tests__/*', '**/test.ts', '**/*.d.ts'],
},
},
};
61 changes: 28 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,42 @@
{
"name": "ts-regex-builder",
"version": "1.6.0",
"version": "1.6.1-beta.3",
"description": "Maintainable regular expressions for TypeScript and JavaScript.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"source": "src/index",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/src/index.d.ts",
"source": "src/index.ts",
"sideEffects": false,
"files": [
"src",
"lib",
"dist",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"exports": {
".": {
"require": "./lib/commonjs/index.js",
"import": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts"
"require": "./dist/commonjs/index.js",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./patterns": {
"require": "./lib/commonjs/patterns/index.js",
"import": "./lib/module/patterns/index.js",
"types": "./lib/typescript/src/patterns/index.d.ts"
"require": "./dist/commonjs/patterns/index.js",
"import": "./dist/esm/patterns/index.mjs",
"types": "./dist/types/patterns/index.d.ts"
}
},
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli lib",
"prepare": "bob build",
"release": "release-it"
"clean": "del-cli dist",
"release": "release-it",
"release:beta": "release-it --preRelease=beta",
"build": "yarn clean && yarn build:commonjs && yarn build:esm && yarn build:typescript",
"build:commonjs": "BABEL_ENV=cjs babel src --out-dir \"dist/commonjs\" --extensions .js,.ts --out-file-extension .js --source-maps --no-comments",
"build:esm": "BABEL_ENV=esm babel src --out-dir \"dist/esm\" --extensions .js,.ts --out-file-extension .mjs --source-maps --no-comments",
"build:typescript": "tsc --project tsconfig.release.json --outDir \"dist/types\""
},
"keywords": [
"regex",
Expand All @@ -50,11 +53,18 @@
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-syntax-flow": "^7.24.1",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@callstack/eslint-config": "^14.1.0",
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^28.1.2",
"babel-plugin-add-import-extension": "^1.6.0",
"commitlint": "^17.0.2",
"del-cli": "^5.0.0",
"eslint": "^8.56.0",
Expand All @@ -64,7 +74,6 @@
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.0.5",
"react-native-builder-bob": "^0.20.0",
"release-it": "^15.0.0",
"typescript": "^5.0.2"
},
Expand All @@ -80,7 +89,7 @@
"src/**/*.{js,jsx,ts,tsx}"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
"<rootDir>/dist/"
]
},
"commitlint": {
Expand Down Expand Up @@ -137,7 +146,7 @@
},
"eslintIgnore": [
"node_modules/",
"lib/",
"dist/",
"coverage/",
"website/"
],
Expand All @@ -147,19 +156,5 @@
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}
4 changes: 0 additions & 4 deletions tsconfig.build.json

This file was deleted.

10 changes: 10 additions & 0 deletions tsconfig.release.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"rootDir": "src"
},
"include": ["src/**/*.ts"],
"exclude": ["**/__tests__**", "**/test.ts"]
}
Loading
Loading