Skip to content

Commit 1a9bf9c

Browse files
committed
1 parent 871f2a7 commit 1a9bf9c

File tree

111 files changed

+1457
-554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+1457
-554
lines changed

.attw.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"color": true,
33
"emoji": true,
44
"format": "ascii",
5-
"ignoreRules": ["cjs-resolves-to-esm"],
5+
"ignoreRules": ["cjs-resolves-to-esm", "internal-resolution-error"],
66
"summary": true
77
}

.cspell.json

+4-8
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,25 @@
1313
"failFast": false,
1414
"flagWords": [],
1515
"ignorePaths": [
16-
"**/*.log",
16+
"!scratch.*",
17+
"**/*.patch",
1718
"**/*.snap",
19+
"**/*.wasm",
1820
"**/.*ignore",
1921
"**/.gitconfig",
2022
"**/CHANGELOG.md",
2123
"**/LICENSE.md",
2224
"**/RELEASE_NOTES.md",
23-
"**/scratch.*",
2425
".cspell.json",
2526
".dictionary.txt",
2627
".git/",
2728
".husky/_/",
2829
".vscode/settings.json",
2930
".yarn/",
30-
"dist/",
3131
"patches/",
3232
"yarn.lock"
3333
],
34-
"ignoreRegExpList": [
35-
"/@flex-development\\/.*/",
36-
"/from\\s+(['\"]).*\\1/",
37-
"import\\(.*\\)"
38-
],
34+
"ignoreRegExpList": [],
3935
"ignoreWords": [],
4036
"language": "en-US",
4137
"patterns": [],

.dictionary.txt

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ cefc
33
commitlintrc
44
dedupe
55
dessant
6+
devlop
67
docast
78
dohm
89
dprint
@@ -16,12 +17,15 @@ kaisugi
1617
libc
1718
lintstagedrc
1819
mkbuild
20+
mlly
1921
nvmrc
2022
pathe
2123
pkgs
2224
pnpx
2325
preid
26+
remarkrc
2427
shfmt
28+
tscu
2529
unstub
2630
vates
2731
vfile

.dprint.jsonc

+3-17
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,15 @@
11
{
22
"$schema": "https://dprint.dev/schemas/v0.json",
33
"excludes": [
4-
"!**/__fixtures__/**/dist/",
5-
"!**/__fixtures__/**/node_modules/",
6-
"!**/typings/**/dist/",
74
"!scratch.*",
85
"**/*.patch",
96
"**/*.snap",
10-
"**/*config.*.timestamp*",
11-
"**/.temp/",
12-
"**/.vercel/",
13-
"**/__fixtures__/git/**/*.txt",
14-
"**/__tests__/benchmark.json",
15-
"**/__tests__/report.json",
16-
"**/__tests__/typecheck.json",
17-
"**/coverage/",
18-
"**/dist/",
19-
"**/node_modules",
20-
"**/tsconfig*temp.json",
7+
"**/CHANGELOG.md",
8+
"**/LICENSE.md",
9+
"**/RELEASE_NOTES.md",
2110
".git/",
2211
".husky/_/",
2312
".yarn/",
24-
"CHANGELOG.md",
25-
"LICENSE.md",
26-
"RELEASE_NOTES.md",
2713
"yarn.lock"
2814
],
2915
"exec": {

.env.zsh

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
[ -f $PWD/.env.repo ] && source $PWD/.env.repo
99
HOMEBREW_BREWFILE=./Brewfile
1010
NODE_NO_WARNINGS=1
11+
NODE_OPTIONS='--experimental-strip-types --experimental-transform-types'

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,8 @@ jobs:
286286
- id: typecheck
287287
if: steps.test-files-check.outputs.files_exists == 'true'
288288
name: Run typecheck
289+
env:
290+
NODE_OPTIONS: --experimental-strip-types --experimental-transform-types
289291
run: yarn typecheck
290292
build:
291293
needs:

.github/workflows/release-chore.yml

-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,6 @@ jobs:
166166
grease changelog -sw
167167
- id: build
168168
name: Build project
169-
env:
170-
NODE_NO_WARNINGS: 1
171169
run: yarn build
172170
- id: commit
173171
name: Commit and push release preparation

.github/workflows/typescript-canary.yml

+2
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ jobs:
7373
run: yarn build
7474
- id: typecheck
7575
name: Run typecheck
76+
env:
77+
NODE_OPTIONS: --experimental-strip-types --experimental-transform-types
7678
run: yarn typecheck
7779
- id: typecheck-build
7880
name: Run typecheck-build

.gitignore

+6-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ pids
2020
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
2121
yarn-debug.log*
2222
yarn-error.log*
23-
!**/__fixtures__/**/node_modules/
23+
!**/__fixtures__/node_modules/
24+
!**/__fixtures__/**/*.log
2425

2526
# Yarn 2 (Not using Zero-Installs)
2627
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
@@ -44,10 +45,8 @@ yarn-error.log*
4445

4546
# Testing
4647
# ------------------------------------------------------------------------------
47-
**/*config.*.timestamp*
48-
**/__tests__/benchmark.json
49-
**/__tests__/report.*
50-
**/__tests__/typecheck.json
48+
**/.vitest-reports/
49+
**/__tests__/reports/*
5150
**/coverage/
5251
**/tsconfig*temp.json
5352
*.lcov
@@ -59,10 +58,8 @@ codecov
5958

6059
# Builds
6160
# ------------------------------------------------------------------------------
62-
**/.temp/
6361
**/.vitepress/cache
6462
**/dist/
65-
!**/__fixtures__/**/*.log
6663
!**/__fixtures__/**/dist/
6764
!**/typings/**/dist/
6865

@@ -76,4 +73,6 @@ codecov
7673

7774
# Misc
7875
# ------------------------------------------------------------------------------
76+
**/*config.*.timestamp*
77+
**/.temp/
7978
**/scratch.*

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22.9.0

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
"emmet.triggerExpansionOnTab": true,
109109
"eslint.enable": true,
110110
"eslint.lintTask.enable": true,
111+
"eslint.nodePath": "node_modules",
111112
"eslint.options": {},
112113
"eslint.runtime": "node",
113114
"eslint.trace.server": "messages",

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ Follow the steps below to setup your local development environment:
107107
| `GITHUB_TOKEN` |
108108
| `HOMEBREW_BREWFILE` |
109109
| `NODE_NO_WARNINGS` |
110+
| `NODE_OPTIONS` |
110111
| `ZSH_DOTENV_FILE` |
111112

112113
#### GitHub Actions

0 commit comments

Comments
 (0)