Skip to content

Commit

Permalink
move cli-e2e into examples/e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 17, 2024
1 parent 6131d06 commit 853dc94
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion e2e/cli-e2e/.eslintrc.json → examples/e2e/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["../../.eslintrc.json", "../../.eslintrc.base.json"],
"extends": ["../../.eslintrc.base.json", "../../.eslintrc.base.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions projects/build-env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"@nx/devkit": "^19.6.4",
"ansis": "^3.3.2",
"vite": "~5.0.0",
"@nx/vite": "18.2.4",
"@nx/vite": "19.7.3",
"tslib": "^2.3.0",
"nx": "18.2.4",
"nx": "19.7.3",
"vitest": "^1.3.1",
"test-utils": "*",
"memfs": "^4.11.1"
Expand Down
3 changes: 2 additions & 1 deletion projects/build-env/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "CommonJS",
"module": "esnext",
"target": "ES2018",
"verbatimModuleSyntax": false
},
"files": [],
Expand Down
3 changes: 2 additions & 1 deletion projects/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "@push-based/cli",
"version": "0.0.1",
"dependencies": {
"yargs": "^17.7.2"
"yargs": "^17.7.2",
"@push-based/core": "0.0.1"
},
"bin": "bin.js"
}
7 changes: 6 additions & 1 deletion projects/core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"name": "@push-based/core",
"version": "0.0.1",
"dependencies": {}
"dependencies": {
"@push-based/utils": "0.0.1",
"@push-based/models": "0.0.1",
"vite": "~5.0.0",
"@nx/vite": "19.7.3"
}
}
4 changes: 3 additions & 1 deletion projects/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"name": "@push-based/utils",
"version": "0.0.1",
"dependencies": {}
"dependencies": {
"@push-based/models": "0.0.1"
}
}

0 comments on commit 853dc94

Please sign in to comment.