Skip to content

Commit

Permalink
(magicspace-update)
Browse files Browse the repository at this point in the history
  • Loading branch information
vilicvane committed Oct 26, 2023
1 parent dad6369 commit 4653f6c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ node_modules/
yarn-error.log
# TypeScript Build Artifacts
bld/
.bld/
*.tsbuildinfo
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
boilerplate.schema.json
# TypeScript Build Artifacts
bld/
.bld/
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "module",
"scripts": {
"3": "yarn && yarn-deduplicate && yarn",
"build": "rimraf --glob packages/*/{.bld,bld} && tsc --build",
"build": "rimraf --glob packages/*/bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint",
Expand All @@ -25,7 +25,7 @@
"packages/cli"
],
"devDependencies": {
"@mufan/eslint-plugin": "^0.2.12",
"@mufan/eslint-plugin": "^0.2.13",
"eslint": "^8.52.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
Expand Down
9 changes: 7 additions & 2 deletions packages/utils/src/test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"compilerOptions": {
"composite": true,
"rootDir": ".",
"outDir": "../../.bld/test"
}
"outDir": "../../bld/test"
},
"references": [
{
"path": "../library"
}
]
}

0 comments on commit 4653f6c

Please sign in to comment.