Skip to content

Commit

Permalink
feat: add art alias for artisan
Browse files Browse the repository at this point in the history
Closes issue golevelup#11

re golevelup#11
  • Loading branch information
DanJFletcher committed Jun 18, 2020
1 parent 58505dd commit 92029a5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/commands/art.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { flags } from "@oclif/command";
import chalk from "chalk";
import execa from "execa";
import * as shelljs from "shelljs";
import { shellWhitespace } from "../actions";
import verifyLaravelProject, {
getExtendedIncompatibilityMessage,
isLaravelUpProject
} from "../actions/verify-laravel-project-directory";
import BaseCommand from "./command-base";
import Artisan from "./artisan";

export default class Art extends Artisan {}

0 comments on commit 92029a5

Please sign in to comment.