This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(explorer): add mui, fix nx config
- Loading branch information
Showing
14 changed files
with
344 additions
and
301 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 @@ | ||
node_modules |
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,24 +1,25 @@ | ||
{ | ||
"extends": "@nrwl/workspace/presets/core.json", | ||
"npmScope": "dstack-js", | ||
"affected": { | ||
"defaultBase": "main" | ||
}, | ||
"cli": { | ||
"defaultCollection": "@nrwl/workspace" | ||
}, | ||
"extends": "@nrwl/workspace/presets/core.json", | ||
"npmScope": "dstack-js", | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "@nrwl/nx-cloud", | ||
"options": { | ||
"accessToken": "MjBiYTU3ODktZDVlZC00MmNkLWI2YmQtNmNlNDIwOWY3ZDU1fHJlYWQtd3JpdGU=", | ||
"cacheableOperations": [ | ||
"build", | ||
"lint", | ||
"test", | ||
"e2e" | ||
], | ||
"accessToken": "MjBiYTU3ODktZDVlZC00MmNkLWI2YmQtNmNlNDIwOWY3ZDU1fHJlYWQtd3JpdGU=" | ||
} | ||
"e2e", | ||
"serve" | ||
] | ||
}, | ||
"runner": "@nrwl/nx-cloud" | ||
} | ||
} | ||
} |
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,5 +1,6 @@ | ||
{ | ||
"plugins": [ | ||
"@emotion/babel-plugin" | ||
"@emotion/babel-plugin", | ||
"babel-plugin-styled-components" | ||
] | ||
} |
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,6 @@ | ||
{ | ||
"compressors": { | ||
"*.{html,css,js,svg,map}": [ | ||
"...", | ||
"@parcel/compressor-gzip", | ||
"@parcel/compressor-brotli" | ||
] | ||
|
This file was deleted.
Oops, something went wrong.
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,31 +1,49 @@ | ||
{ | ||
"implicitDependencies": [ | ||
"lib", | ||
"ipfs" | ||
], | ||
"projectType": "application", | ||
"root": "packages/explorer", | ||
"serve": { | ||
"executor": "@nrwl/workspace:run-commands", | ||
"options": { | ||
"commands": [ | ||
"nx build lib", | ||
"nx build ipfs", | ||
"cd packages/explorer && yarn serve" | ||
], | ||
"cwd": "/" | ||
} | ||
}, | ||
"sourceRoot": "packages/explorer/src", | ||
"tags": [], | ||
"targets": { | ||
"executor": "@nrwl/workspace:run-commands", | ||
"options": { | ||
"commands": [ | ||
"nx build lib", | ||
"nx build ipfs", | ||
"yarn build" | ||
"build": { | ||
"dependsOn": [ | ||
{ | ||
"projects": "dependencies", | ||
"target": "build" | ||
} | ||
], | ||
"cwd": "/" | ||
"executor": "@nrwl/workspace:run-commands", | ||
"options": { | ||
"commands": [ | ||
"yarn build" | ||
], | ||
"cwd": "packages/explorer" | ||
}, | ||
"outputs": [ | ||
"packages/explorer/dist", | ||
".parcel-cache" | ||
] | ||
}, | ||
"outputs": [ | ||
"packages/explorer/dist" | ||
] | ||
"serve": { | ||
"dependsOn": [ | ||
{ | ||
"projects": "dependencies", | ||
"target": "build" | ||
} | ||
], | ||
"executor": "@nrwl/workspace:run-commands", | ||
"options": { | ||
"commands": [ | ||
"yarn serve" | ||
], | ||
"cwd": "packages/explorer" | ||
}, | ||
"outputs": [ | ||
".parcel-cache" | ||
] | ||
} | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.
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,33 +1,43 @@ | ||
{ | ||
"projectType": "library", | ||
"root": "packages/lib", | ||
"sourceRoot": "packages/lib/src", | ||
"projectType": "library", | ||
"tags": [], | ||
"targets": { | ||
"build": { | ||
"executor": "@nrwl/js:tsc", | ||
"outputs": ["{options.outputPath}"], | ||
"options": { | ||
"outputPath": "dist/packages/lib", | ||
"assets": [ | ||
"packages/lib/*.md" | ||
], | ||
"main": "packages/lib/src/index.ts", | ||
"tsConfig": "packages/lib/tsconfig.lib.json", | ||
"assets": ["packages/lib/*.md"] | ||
} | ||
"outputPath": "dist/packages/lib", | ||
"tsConfig": "packages/lib/tsconfig.lib.json" | ||
}, | ||
"outputs": [ | ||
"{options.outputPath}" | ||
] | ||
}, | ||
"lint": { | ||
"executor": "@nrwl/linter:eslint", | ||
"outputs": ["{options.outputFile}"], | ||
"options": { | ||
"lintFilePatterns": ["packages/lib/**/*.ts"] | ||
} | ||
"lintFilePatterns": [ | ||
"packages/lib/**/*.ts" | ||
] | ||
}, | ||
"outputs": [ | ||
"{options.outputFile}" | ||
] | ||
}, | ||
"test": { | ||
"executor": "@nrwl/jest:jest", | ||
"outputs": ["coverage/packages/lib"], | ||
"options": { | ||
"jestConfig": "packages/lib/jest.config.js", | ||
"passWithNoTests": true | ||
} | ||
}, | ||
"outputs": [ | ||
"coverage/packages/lib" | ||
] | ||
} | ||
}, | ||
"tags": [] | ||
} | ||
} |
Oops, something went wrong.