-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b80fb82
commit 4068556
Showing
17 changed files
with
569 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { join } from 'node:path' | ||
import { julr } from '@julr/tooling-configs/eslint' | ||
|
||
export default await julr( | ||
{ | ||
enableGitIgnore: { | ||
files: join(import.meta.dirname, '.gitignore'), | ||
root: true, | ||
strict: true, | ||
}, | ||
}, | ||
{ | ||
rules: { | ||
'@typescript-eslint/ban-types': 'off', | ||
}, | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{ | ||
"name": "@tuyau/monorepo", | ||
"description": "", | ||
"type": "module", | ||
"version": "0.0.0", | ||
"description": "", | ||
"author": "Julien Ripouteau <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [], | ||
"main": "index.js", | ||
"scripts": { | ||
"typecheck": "pnpm run -r --parallel typecheck", | ||
|
@@ -11,30 +15,22 @@ | |
"release": "pnpm run build && changeset publish" | ||
}, | ||
"devDependencies": { | ||
"@adonisjs/eslint-config": "^1.3.0", | ||
"@adonisjs/prettier-config": "^1.3.0", | ||
"@adonisjs/tsconfig": "^1.3.0", | ||
"@japa/assert": "^2.1.0", | ||
"@japa/assert": "^3.0.0", | ||
"@japa/expect-type": "^2.0.2", | ||
"@japa/file-system": "^2.3.0", | ||
"@japa/runner": "^3.1.1", | ||
"@swc/core": "^1.4.6", | ||
"@japa/runner": "^3.1.2", | ||
"@julr/tooling-configs": "^2.2.0", | ||
"@swc/core": "^1.4.13", | ||
"c8": "^9.1.0", | ||
"copyfiles": "^2.4.1", | ||
"del-cli": "^5.1.0", | ||
"eslint": "^8.57.0", | ||
"eslint": "^9.0.0", | ||
"nock": "^14.0.0-beta.5", | ||
"prettier": "^3.2.5", | ||
"release-it": "^17.1.1", | ||
"release-it": "^17.2.0", | ||
"ts-node": "^10.9.2", | ||
"tsup": "^8.0.2", | ||
"typescript": "^5.4.2" | ||
}, | ||
"author": "Julien Ripouteau <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [], | ||
"eslintConfig": { | ||
"extends": "@adonisjs/eslint-config/package" | ||
"typescript": "^5.4.5" | ||
}, | ||
"prettier": "@adonisjs/prettier-config" | ||
"prettier": "@julr/tooling-configs/prettier" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"name": "@tuyau/client", | ||
"description": "e2e client for AdonisJS", | ||
"type": "module", | ||
"version": "0.0.3", | ||
"description": "e2e client for AdonisJS", | ||
"author": "Julien Ripouteau <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [], | ||
"exports": { | ||
".": "./build/index.js" | ||
}, | ||
"main": "build/index.js", | ||
"type": "module", | ||
"files": [ | ||
"build" | ||
], | ||
"exports": { | ||
".": "./build/index.js" | ||
}, | ||
"scripts": { | ||
"lint": "eslint .", | ||
"typecheck": "tsc --noEmit", | ||
|
@@ -19,16 +22,13 @@ | |
"quick:test": "node --loader ts-node/esm bin/test.ts", | ||
"checks": "pnpm lint && pnpm typecheck" | ||
}, | ||
"devDependencies": { | ||
"@tuyau/utils": "workspace:*" | ||
}, | ||
"dependencies": { | ||
"@poppinss/matchit": "^3.1.2", | ||
"ky": "^1.2.3" | ||
}, | ||
"author": "Julien Ripouteau <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [], | ||
"devDependencies": { | ||
"@tuyau/utils": "workspace:*" | ||
}, | ||
"tsup": { | ||
"entry": [ | ||
"./index.ts" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"extends": "@adonisjs/tsconfig/tsconfig.package.json", | ||
"compilerOptions": { | ||
"rootDir": "./", | ||
"outDir": "./build", | ||
"lib": ["DOM", "ESNext"], | ||
"types": [] | ||
"rootDir": "./", | ||
"types": [], | ||
"outDir": "./build" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ | |
*/ | ||
|
||
import { register } from 'node:module' | ||
|
||
register('ts-node/esm', import.meta.url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"name": "@tuyau/utils", | ||
"description": "Utilities for Tuyau", | ||
"type": "module", | ||
"version": "0.0.1", | ||
"description": "Utilities for Tuyau", | ||
"author": "Julien Ripouteau <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [], | ||
"exports": { | ||
"./types": "./build/types.js" | ||
}, | ||
"main": "index.js", | ||
"type": "module", | ||
"files": [ | ||
"build" | ||
], | ||
"exports": { | ||
"./types": "./build/types.js" | ||
}, | ||
"scripts": { | ||
"lint": "eslint .", | ||
"typecheck": "tsc --noEmit", | ||
"release": "pnpm build && pnpm release-it", | ||
"build": "tsup-node", | ||
"checks": "pnpm lint && pnpm typecheck" | ||
}, | ||
"author": "Julien Ripouteau <[email protected]>", | ||
"license": "ISC", | ||
"keywords": [], | ||
"publishConfig": { | ||
"access": "public", | ||
"tag": "latest" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.