Skip to content

Commit 8e9a73a

Browse files
committed
oh my
1 parent 288006d commit 8e9a73a

File tree

10 files changed

+446
-240
lines changed

10 files changed

+446
-240
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ yarn.lock
1111
.vscode-test
1212
test-results
1313
.DS_Store
14+
src/vendor

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const tsupConfig = require('./tsup.config')
77
module.exports = process.env.DOGFOOD_CODEGEN_PLUGIN // todo: make sure the "recommendedConfig" exported by this library actually works, shouldn't force ppl to use eslint-plugin-mmkal
88
? localPlugin.flatConfig.recommendedConfig
99
: [
10+
{ignores: ['src/vendor/**']},
1011
...mmkal.recommendedFlatConfigs.map(cfg => {
1112
if (cfg.plugins?.codegen) {
1213
return {

foo.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from 'isomorphic-git';

package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"prepare": "pnpm build",
3131
"eslint": "eslint --max-warnings 0",
3232
"lint": "tsc && pnpm eslint .",
33+
"build-vendor": "rollup -c rollup.config.js",
3334
"build": "rm -rf dist && tsc -p tsconfig.lib.json && tsup",
3435
"test": "pnpm build && vitest run",
3536
"e2e": "playwright test"
@@ -59,7 +60,7 @@
5960
"glob": "^10.3.10",
6061
"io-ts": "^2.2.4",
6162
"io-ts-extra": "^0.11.6",
62-
"isomorphic-git": "^1.32.1",
63+
"isomorphic-git": "1.9.2",
6364
"js-yaml": "^3.14.0",
6465
"lodash": "^4.17.15",
6566
"memfs": "^4.17.2",
@@ -75,8 +76,12 @@
7576
"zx": "^8.5.5"
7677
},
7778
"devDependencies": {
79+
"@babel/cli": "7.28.0",
7880
"@eslint/config-inspector": "^0.4.11",
7981
"@playwright/test": "^1.40.0",
82+
"@rollup/plugin-babel": "6.0.4",
83+
"@rollup/plugin-commonjs": "28.0.6",
84+
"@rollup/plugin-node-resolve": "16.0.1",
8085
"@types/babel__traverse": "7.11.0",
8186
"@types/dedent": "0.7.0",
8287
"@types/glob": "7.1.3",
@@ -85,11 +90,13 @@
8590
"@types/ms": "2.1.0",
8691
"@vscode/test-electron": "^2.3.8",
8792
"arktype": "^2.1.20",
93+
"babel-plugin-transform-async-to-promises": "0.8.15",
8894
"eslint": "^8.57.0",
8995
"eslint-plugin-mmkal": "^0.10.1",
9096
"minimatch": "3.0.4",
9197
"np": "^10.0.7",
9298
"pkg-pr-new": "^0.0.17",
99+
"rollup": "4.46.2",
93100
"strip-ansi": "6.0.1",
94101
"ts-morph": "16.0.0",
95102
"ts-node": "9.1.1",

0 commit comments

Comments
 (0)