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

Commit

Permalink
feat(package): defined the base structure
Browse files Browse the repository at this point in the history
  • Loading branch information
travi committed Mar 23, 2019
1 parent 910a4af commit c54b37d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default as scaffold} from './scaffolder';
3 changes: 3 additions & 0 deletions src/scaffolder.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function () {
return {};
}
7 changes: 0 additions & 7 deletions test/unit/canary-test.js

This file was deleted.

8 changes: 8 additions & 0 deletions test/unit/scaffolder-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import {assert} from 'chai';
import {scaffold} from '../../src';

suite('scaffolder', () => {
test('that the config is scaffolded', () => {
assert.deepEqual(scaffold(), {});
});
});

0 comments on commit c54b37d

Please sign in to comment.