chore(cli/backend): fixing some drit

This commit is contained in:
blam
2020-09-21 15:48:55 +02:00
parent 9f8f07d483
commit cd0f2bd3db
3 changed files with 2 additions and 3 deletions
@@ -176,7 +176,6 @@ export async function movePlugin(
}
export default async ({ backend }: { backend: boolean }) => {
console.warn(backend);
const codeownersPath = await getCodeownersFilePath(paths.targetRoot);
const questions: Question[] = [
@@ -7,7 +7,7 @@
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"scripts": {
@@ -8,7 +8,7 @@ describe('ExampleComponent', () => {
it('should render', () => {
const rendered = render(
<ThemeProvider theme={lightTheme}>
<ExampleComponent />
<ExampleComponent />
</ThemeProvider>,
);
expect(rendered.getByText('Welcome to {{ id }}!')).toBeInTheDocument();