Skip to content

Commit

Permalink
Addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
meta-paul committed Oct 18, 2023
1 parent 2387d11 commit e7230c3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ module.exports = {
loader: "url-loader",
options: { limit: 100000 },
},
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.jpg$/,
loader: "file-loader",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ class StaticBlueprintArgs(
units_per_assignment: int = field(
default=1, metadata={"help": "How many workers you want to do each assignment"}
)
task_source_review: str = field(
default="",
metadata={
"help": "Path to file containing javascript bundle for the task review application",
"required": False,
},
)
extra_source_dir: str = field(
default=MISSING,
metadata={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ class ParlAIChatBlueprintArgs(OnboardingRequiredArgs, BlueprintArgs):
default=MISSING,
metadata={"help": "Optional path to a directory containing custom js code"},
)
task_source_review: str = field(
default="",
metadata={
"help": "Path to file containing javascript bundle for the task review application",
"required": False,
},
)
extra_source_dir: str = field(
default=MISSING,
metadata={
Expand Down

0 comments on commit e7230c3

Please sign in to comment.