Skip to content

Commit

Permalink
chore: rename lit-element naming
Browse files Browse the repository at this point in the history
  • Loading branch information
deleonio committed Dec 13, 2020
1 parent ca09693 commit 0502c4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/cli/frameworks/lit-element/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import { PackageJson } from '@leanup/cli/lib/interfaces';

import { VanillaCLI } from './vanilla-cli';
import { LitElementCLI } from './lit-element-cli';

const packageJson = <PackageJson>require('../package.json');

const cli = new VanillaCLI('vanilla', packageJson.version);
const cli = new LitElementCLI('lit-element', packageJson.version);
cli.parse();
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as path from 'path';
import { CommonCLI } from '@leanup/cli/lib/common-cli';
import { CreateOps } from '@leanup/cli/lib/interfaces';

export class VanillaCLI extends CommonCLI {
export class LitElementCLI extends CommonCLI {
constructor(name: string, version: string) {
super(name, version);

Expand Down

0 comments on commit 0502c4c

Please sign in to comment.