old-agentic-v1^2
Travis Fischer 2023-06-28 22:44:50 -07:00
rodzic 12ae58c315
commit 69323026c9
6 zmienionych plików z 12 dodań i 10 usunięć

Wyświetl plik

@ -13,6 +13,7 @@
},
"ecmaVersion": "latest",
"sourceType": "module",
// TODO: move to ./packages/tsconfig/tsconfig.json
"project": "./packages/core/tsconfig.json"
},
"rules": {

Wyświetl plik

@ -6,7 +6,7 @@
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"build-web": "next build",
"start": "next start"
},
"dependencies": {

Wyświetl plik

@ -10,15 +10,15 @@
"node": ">=18"
},
"scripts": {
"build": "turbo build --filter=\"./packages/*\"",
"build": "turbo build",
"changeset": "changeset",
"clean": "turbo clean --filter=\"./packages/*\"",
"clean": "turbo clean",
"dev": "turbo dev --no-cache --continue",
"prepare": "husky install",
"pre-commit": "lint-staged",
"publint": "turbo publint --filter=\"packages/*\"",
"publint": "turbo publint",
"release": "turbo clean && turbo build && changeset publish",
"test": "turbo test",
"pre-commit": "lint-staged",
"eslint-check": "eslint \"**/*.{ts,tsx}\"",
"prettier-check": "prettier --check \"**/*.{js,ts,tsx,md,mdx}\"",
"prettier-write": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",

Wyświetl plik

@ -23,7 +23,7 @@
"node": ">=14"
},
"scripts": {
"build": "tsup",
"build-lib": "tsup",
"dev": "tsup --watch",
"clean": "del build",
"test": "NODE_OPTIONS='--loader=tsx --no-warnings' ava"

Wyświetl plik

@ -14,15 +14,16 @@
"test": {
"dependsOn": [
"^build",
"build",
"unit-test",
"prettier-check",
"eslint-check"
"eslint-check",
"build",
"unit-test"
]
},
"prettier-check": {},
"eslint-check": {},
"unit-test": {
"dotEnv": [".env"],
"outputs": ["test/.snapshots"]
},
"publint": {
@ -30,7 +31,7 @@
},
"clean": {
"dependsOn": ["^clean"],
"outputs": ["build/**", "dist/**"]
"outputs": ["build/**"]
},
"dev": {
"cache": false,