Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit c54b37d

Browse files
committed
feat(package): defined the base structure
1 parent 910a4af commit c54b37d

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {default as scaffold} from './scaffolder';

src/scaffolder.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function () {
2+
return {};
3+
}

test/unit/canary-test.js

-7
This file was deleted.

test/unit/scaffolder-test.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {assert} from 'chai';
2+
import {scaffold} from '../../src';
3+
4+
suite('scaffolder', () => {
5+
test('that the config is scaffolded', () => {
6+
assert.deepEqual(scaffold(), {});
7+
});
8+
});

0 commit comments

Comments
 (0)