forked from GSA/fedramp-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pin versions * Update module.mk * version bump * Update .tool-versions Co-authored-by: A.J. Stein <[email protected]> --------- Co-authored-by: A.J. Stein <[email protected]>
- Loading branch information
1 parent
c6da668
commit be494dd
Showing
5 changed files
with
14 additions
and
9 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 @@ | ||
oscal-cli 2.3.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,7 @@ | ||
# Variables | ||
OSCAL_CLI = npx [email protected] | ||
OSCAL_VERSION = $(shell jq -r .dependencies.oscal package.json) | ||
OSCAL_CLI_VERSION = $(shell awk '/^oscal-cli/ {print $$2}' .tool-versions) | ||
OSCAL_CLI = npx oscal@$(OSCAL_VERSION) | ||
SRC_DIR = ./src | ||
DIST_DIR = ./dist | ||
REV5_BASELINES = ./dist/content/rev5/baselines | ||
|
@@ -10,7 +12,7 @@ REV5_TEMPLATES = ./dist/content/rev5/templates | |
init-validations: | ||
@echo "Installing node modules..." | ||
npm install | ||
$(OSCAL_CLI) use latest | ||
$(OSCAL_CLI) use $(OSCAL_CLI_VERSION) | ||
$(OSCAL_CLI) server update | ||
|
||
# Style lint | ||
|