Skip to content

Commit

Permalink
[mate-scripts] skip configs copying for React tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrinko committed Jul 14, 2024
1 parent 9674aa2 commit 548c89f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mate-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mate-academy/scripts",
"version": "1.8.4",
"version": "1.8.5",
"description": "Scripts to init, run, test, deploy Mate academy homework projects",
"main": "bin/mateScripts.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions mate-scripts/src/commands/Init.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ export class InitCommand extends Command {

protected react = () => {
this.copyGitIgnore(ProjectTypes.React);
this.copyProjectTypeSpecificConfigs(ProjectTypes.React);
// this.copyProjectTypeSpecificConfigs(ProjectTypes.React);
this.copyProjectTypeSpecificTemplates(ProjectTypes.React);
this.initGitHooks(ProjectTypes.React);
};

protected reactTypescript = () => {
this.copyGitIgnore(ProjectTypes.ReactTypescript);
this.copyProjectTypeSpecificConfigs(ProjectTypes.ReactTypescript);
// this.copyProjectTypeSpecificConfigs(ProjectTypes.ReactTypescript);
this.copyProjectTypeSpecificTemplates(ProjectTypes.ReactTypescript);
this.initGitHooks(ProjectTypes.ReactTypescript);
};
Expand Down

0 comments on commit 548c89f

Please sign in to comment.