Skip to content

Commit c79e340

Browse files
committed
feat: bundle as commonjs and release as dual
1 parent 411516a commit c79e340

File tree

8 files changed

+126
-7
lines changed

8 files changed

+126
-7
lines changed

.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config/schema.json",
3+
"commit": false,
4+
"linked": [],
5+
"access": "public",
6+
"baseBranch": "fork-release",
7+
"updateInternalDependencies": "patch",
8+
"ignore": []
9+
}

.github/workflows/rebase.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Rebase
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 0 * * *'
7+
8+
jobs:
9+
rebase:
10+
name: Rebase and Push
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Repo
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
ref: fork-release
18+
19+
- name: Set Git Info
20+
run: |
21+
git config --global user.email [email protected]
22+
git config --global user.name JounQin
23+
git remote add upstream https://github.com/wooorm/import-meta-resolve.git
24+
25+
- name: Rebase and Push
26+
run: |
27+
git fetch upstream main:main
28+
git rebase upstream/main
29+
git push -f

.github/workflows/release.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- fork-release
7+
8+
jobs:
9+
release:
10+
name: Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Repo
14+
uses: actions/checkout@v4
15+
with:
16+
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
17+
fetch-depth: 0
18+
19+
- name: Setup Node.js LTS
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: lts/*
23+
24+
- name: Install Dependencies
25+
run: npm install
26+
27+
- name: Publish to npm
28+
uses: changesets/action@v1
29+
with:
30+
publish: npx @changesets/cli publish
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
34+
35+
- name: Sync to cnpm
36+
run: npx cnpm sync @dual-bundle/import-meta-resolve

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ coverage/
55
/node_modules
66
test/baseline*.js
77
yarn.lock
8+
/index.cjs

lib/errors.js

-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,6 @@ function isErrorStackTraceLimitWritable() {
385385
// Do no touch Error.stackTraceLimit as V8 would attempt to install
386386
// it again during deserialization.
387387
try {
388-
// @ts-expect-error: not in types?
389388
if (v8.startupSnapshot.isBuildingSnapshot()) {
390389
return false
391390
}

package.json

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,50 @@
11
{
2-
"name": "import-meta-resolve",
2+
"name": "@dual-bundle/import-meta-resolve",
33
"version": "4.0.0",
4-
"description": "Resolve things like Node.js — ponyfill for `import.meta.resolve`",
4+
"description": "A fork of `import-meta-resolve` with commonjs + ESM support at the same time, AKA dual package.",
55
"license": "MIT",
66
"keywords": [
77
"resolve",
88
"node",
99
"esm",
10-
"module"
10+
"module",
11+
"import",
12+
"import-meta-resolve"
1113
],
12-
"repository": "wooorm/import-meta-resolve",
14+
"repository": "un-es/import-meta-resolve",
1315
"bugs": "https://github.com/wooorm/import-meta-resolve/issues",
1416
"funding": {
1517
"type": "github",
1618
"url": "https://github.com/sponsors/wooorm"
1719
},
1820
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
21+
"maintainers": [
22+
"JounQin <[email protected]> (https://www.1stG.me)"
23+
],
1924
"contributors": [
2025
"Titus Wormer <[email protected]> (https://wooorm.com)"
2126
],
2227
"sideEffects": false,
2328
"type": "module",
24-
"main": "index.js",
29+
"main": "index.cjs",
30+
"module": "index.js",
2531
"types": "index.d.ts",
32+
"exports": {
33+
"types": "./index.d.ts",
34+
"require": "./index.cjs",
35+
"default": "./index.js"
36+
},
2637
"files": [
2738
"lib/",
2839
"index.d.ts",
40+
"index.cjs",
2941
"index.js"
3042
],
3143
"devDependencies": {
3244
"@types/node": "^20.0.0",
3345
"@types/semver": "^7.0.0",
3446
"c8": "^8.0.0",
47+
"esbuild": "^0.20.1",
3548
"prettier": "^3.0.0",
3649
"remark-cli": "^11.0.0",
3750
"remark-preset-wooorm": "^9.0.0",
@@ -43,7 +56,7 @@
4356
"scripts": {
4457
"prepack": "npm run generate && npm run build && npm run format",
4558
"generate": "node --conditions development script.js",
46-
"build": "tsc --build --clean && tsc --build && type-coverage",
59+
"build": "tsc --build --clean && tsc --build && type-coverage && esbuild --bundle --outfile=index.cjs --platform=node --format=cjs index.js",
4760
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
4861
"test-api": "node --experimental-import-meta-resolve test/baseline.js && node --experimental-import-meta-resolve test/baseline-async.js && node test/index.js",
4962
"test-coverage": "c8 --check-coverage --branches 75 --functions 75 --lines 75 --statements 75 --reporter lcov npm run test-api",
@@ -79,6 +92,10 @@
7992
[
8093
"remark-lint-maximum-heading-length",
8194
false
95+
],
96+
[
97+
"remark-lint-no-multiple-toplevel-headings",
98+
false
8299
]
83100
]
84101
},

readme.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# `@dual-bundle/import-meta-resolve`
2+
3+
A fork of [`import-meta-resolve`](https://github.com/wooorm/import-meta-resolve)
4+
with commonjs + ESM support at the same time, AKA dual package.
5+
6+
It will rebase and try to release in order to sync with the upstream every day,
7+
see [.github/workflows/rebase.yml](.github/workflows/rebase.yml) for details.
8+
9+
## Installation
10+
11+
```bash
12+
# npm
13+
npm install @dual-bundle/import-meta-resolve
14+
15+
# yarn
16+
yarn add @dual-bundle/import-meta-resolve
17+
```
18+
19+
***
20+
121
# import-meta-resolve
222

323
[![Build][build-badge]][build]

0 commit comments

Comments
 (0)