-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build hdf-converters with Rollup for html-mapper #6004
base: master
Are you sure you want to change the base?
Changes from 24 commits
5bf602f
68b494d
72c1768
19ea07f
3f5b943
4e72734
414cada
fd42bab
2855915
0acdb73
a84cf1a
a961cf5
635e936
ffa6c21
cdc68af
8714213
779de05
93ffcbf
f07ee17
c86852c
7274fd5
410c5fa
c68f7df
73e2e8d
2037b69
9658559
cdabb7d
826dd13
8796c90
70d4ba8
22b9627
90eff2c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,4 +68,7 @@ certs/*.pem | |
.pnp.* | ||
|
||
# Database Content | ||
data/* | ||
data/* | ||
|
||
# Nx build manager | ||
.nx/* |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please put all the project information into the package.json file instead of being a standalone config file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "@mitre/heimdall-lite", | ||
"implicitDependencies": ["@mitre/hdf-converters"], | ||
"targets": { | ||
"prebuild": { | ||
"executor": "nx:run-commands", | ||
"options": { | ||
"cwd": "apps/frontend", | ||
"command": "rimraf ../../dist/frontend" | ||
} | ||
}, | ||
"build": { | ||
"executor": "nx:run-commands", | ||
"options": { | ||
"cwd": "apps/frontend", | ||
"command": "vue-cli-service build" | ||
} | ||
}, | ||
"test": { | ||
"executor": "nx:run-commands", | ||
"options": { | ||
"cwd": "apps/frontend", | ||
"command": "jest" | ||
}, | ||
"dependsOn": ["^build"] | ||
} | ||
} | ||
} |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please swap out all lerna commands for nx. this will also require updating the release docs. i would also make sure everything works with the docker builds.