Skip to content

Commit ba07362

Browse files
authoredJan 6, 2024
fix: fixed bun compatibility for @sapphire/utilities (#703)
resolves #702
1 parent 5a77c18 commit ba07362

9 files changed

+83
-15
lines changed
 

‎.github/workflows/auto-updater.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build packages for script
2525
run: yarn turbo run build --filter=@sapphire/timestamp --filter=@sapphire/fetch --filter=@sapphire/prettier-config
2626
- name: Run updater
27-
run: node --experimental-json-modules scripts/twemoji-regex-updater.mjs
27+
run: node scripts/twemoji-regex-updater.mjs
2828
- name: Run prettier on the code
2929
run: yarn format
3030
- name: Commit any changes and create a pull request

‎.github/workflows/continuous-integration.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- stable
87
pull_request:
98

109
jobs:
@@ -33,6 +32,7 @@ jobs:
3332
--include @sapphire/prettier-config \
3433
--include @sapphire/eslint-plugin-result \
3534
--include @sapphire/result \
35+
--include @sapphire/node-utilities \
3636
--include @sapphire/utilities \
3737
run build
3838
- name: Run ESLint
@@ -101,3 +101,20 @@ jobs:
101101
run: yarn --immutable
102102
- name: Run Script
103103
run: yarn check-subpath -- --check
104+
105+
Check_DynamicSideEffects:
106+
name: Check Dynamic Side Effects
107+
runs-on: ubuntu-latest
108+
steps:
109+
- name: Checkout Project
110+
uses: actions/checkout@v4
111+
- name: Use Node.js v20
112+
uses: actions/setup-node@v4
113+
with:
114+
node-version: 20
115+
cache: yarn
116+
registry-url: https://registry.yarnpkg.org/
117+
- name: Install Dependencies
118+
run: yarn --immutable
119+
- name: Validate dynamic side effects
120+
run: yarn dynamic-side-effects -- --check

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"docs": "turbo run docs",
1515
"update": "yarn upgrade-interactive",
1616
"check-update": "turbo run check-update",
17-
"check-subpath": "turbo run check-subpath"
17+
"check-subpath": "turbo run check-subpath",
18+
"dynamic-side-effects": "turbo run dynamic-side-effects"
1819
},
1920
"devDependencies": {
2021
"@actions/core": "^1.10.1",

‎packages/utilities/package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@
1313
"scripts": {
1414
"test": "vitest run",
1515
"lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
16-
"build": "tsup",
16+
"build": "tsup && yarn dynamic-side-effects && yarn check-subpath",
1717
"docs": "typedoc-json-parser",
18-
"prepack": "yarn build && yarn check-subpath",
18+
"prepack": "yarn build",
1919
"bump": "cliff-jumper",
2020
"check-update": "cliff-jumper --dry-run",
21+
"dynamic-side-effects": "node ../../scripts/dynamic-side-effects.mjs utilities",
2122
"check-subpath": "node ../../scripts/subpath-updater.mjs utilities"
2223
},
2324
"repository": {
@@ -49,6 +50,8 @@
4950
},
5051
"devDependencies": {
5152
"@favware/cliff-jumper": "^2.2.3",
53+
"@sapphire/node-utilities": "workspace:^",
54+
"@sapphire/prettier-config": "workspace:^",
5255
"@vitest/coverage-v8": "^1.1.0",
5356
"esbuild-plugin-file-path-extensions": "^2.0.0",
5457
"tsup": "^8.0.1",
@@ -671,7 +674,7 @@
671674
}
672675
},
673676
"sideEffects": [
674-
"./dist/esm/chunk*.mjs",
677+
"./dist/esm/chunk-G5GHKT7C.mjs",
675678
"./dist/iife/index.global.js"
676679
]
677680
}

‎scripts/dynamic-side-effects.mjs

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import { bold, green, red } from 'colorette';
2+
import { readFile, writeFile } from 'node:fs/promises';
3+
import { basename } from 'node:path';
4+
import { format } from 'prettier';
5+
import { findFilesRecursivelyRegex } from '../packages/node-utilities/dist/esm/index.mjs';
6+
import prettierConfig from '../packages/prettier-config/dist/index.mjs';
7+
8+
const packageName = process.argv[2];
9+
const check = process.argv[3] === '--check';
10+
11+
const sideEffects = ['./dist/iife/index.global.js'];
12+
13+
for await (const file of findFilesRecursivelyRegex(
14+
new URL(`../packages/${packageName}/dist/esm`, import.meta.url),
15+
/chunk-[A-Z0-9]+\.mjs(?!\.map)/
16+
)) {
17+
const name = basename(file);
18+
sideEffects.unshift(`./dist/esm/${name}`);
19+
}
20+
21+
const packageJsonRaw = await readFile(new URL(`../packages/${packageName}/package.json`, import.meta.url), 'utf8');
22+
const packageJSON = JSON.parse(packageJsonRaw);
23+
24+
const newPackageJSON = JSON.stringify({
25+
...packageJSON,
26+
sideEffects
27+
});
28+
29+
const oldPackageJSON = JSON.stringify(packageJSON);
30+
31+
if (oldPackageJSON === newPackageJSON) {
32+
console.log(green(`The package.json file for ${packageName} is up to date!`));
33+
process.exit(0);
34+
}
35+
36+
if (check) {
37+
console.error(red(`The package.json file for ${packageName} is not up to date! Run ${green(bold('yarn dynamic-side-effects'))} to update it.`));
38+
process.exit(1);
39+
}
40+
41+
const formattedNewPackageJSON = await format(newPackageJSON, { ...prettierConfig, parser: 'json-stringify' });
42+
await writeFile(new URL(`../packages/${packageName}/package.json`, import.meta.url), formattedNewPackageJSON);
43+
44+
console.log(green(`The package.json file for ${packageName} is updated successfully!`));

‎scripts/subpath-updater.mjs

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { bold, green, red } from 'colorette';
2-
import { writeFile } from 'node:fs/promises';
2+
import { readFile, writeFile } from 'node:fs/promises';
33
import { basename } from 'node:path';
44
import { format } from 'prettier';
55
import { findFilesRecursivelyStringEndsWith } from '../packages/node-utilities/dist/esm/index.mjs';
@@ -76,11 +76,8 @@ for await (const file of findFilesRecursivelyStringEndsWith(new URL(`../packages
7676

7777
const exportObj = Object.fromEntries([...exportMap.entries()].sort((a, b) => a[0].localeCompare(b[0])));
7878

79-
const { default: packageJSON } = await import(`../packages/${packageName}/package.json`, {
80-
assert: {
81-
type: 'json'
82-
}
83-
});
79+
const packageJsonRaw = await readFile(new URL(`../packages/${packageName}/package.json`, import.meta.url), 'utf8');
80+
const packageJSON = JSON.parse(packageJsonRaw);
8481

8582
const newPackageJSON = JSON.stringify({
8683
...packageJSON,

‎scripts/twemoji-regex-updater.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ url.searchParams.append('since', timestamp);
3838

3939
const [commits, { default: ciData }] = await Promise.all([
4040
fetch(url, FetchResultTypes.JSON), //
41-
import(shaTrackerFileUrl, { assert: { type: 'json' } }) //
41+
import(shaTrackerFileUrl, { with: { type: 'json' } }) //
4242
]);
4343

4444
const data = { sha: commits.length ? commits[0].sha : null, length: commits.length };

‎turbo.json

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
"dependsOn": ["@sapphire/prettier-config#build", "@sapphire/node-utilities#build"],
4141
"outputs": ["package.json"]
4242
},
43+
"dynamic-side-effects": {
44+
"dependsOn": ["@sapphire/prettier-config#build", "@sapphire/node-utilities#build", "@sapphire/utilities#build"],
45+
"outputs": ["package.json"]
46+
},
4347
"docs": {
4448
"dependsOn": [
4549
"@sapphire/async-queue#build",

‎yarn.lock

+4-2
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ __metadata:
12041204
languageName: unknown
12051205
linkType: soft
12061206

1207-
"@sapphire/node-utilities@npm:^1.0.0, @sapphire/node-utilities@workspace:packages/node-utilities":
1207+
"@sapphire/node-utilities@npm:^1.0.0, @sapphire/node-utilities@workspace:^, @sapphire/node-utilities@workspace:packages/node-utilities":
12081208
version: 0.0.0-use.local
12091209
resolution: "@sapphire/node-utilities@workspace:packages/node-utilities"
12101210
dependencies:
@@ -1244,7 +1244,7 @@ __metadata:
12441244
languageName: node
12451245
linkType: hard
12461246

1247-
"@sapphire/prettier-config@workspace:packages/prettier-config":
1247+
"@sapphire/prettier-config@workspace:^, @sapphire/prettier-config@workspace:packages/prettier-config":
12481248
version: 0.0.0-use.local
12491249
resolution: "@sapphire/prettier-config@workspace:packages/prettier-config"
12501250
dependencies:
@@ -1404,6 +1404,8 @@ __metadata:
14041404
resolution: "@sapphire/utilities@workspace:packages/utilities"
14051405
dependencies:
14061406
"@favware/cliff-jumper": "npm:^2.2.3"
1407+
"@sapphire/node-utilities": "workspace:^"
1408+
"@sapphire/prettier-config": "workspace:^"
14071409
"@vitest/coverage-v8": "npm:^1.1.0"
14081410
esbuild-plugin-file-path-extensions: "npm:^2.0.0"
14091411
tsup: "npm:^8.0.1"

0 commit comments

Comments
 (0)
Please sign in to comment.