strip out components into separate repo

This commit is contained in:
Keegan
2016-02-09 17:19:33 -08:00
parent 66f2b05129
commit 80982c8e6d
31 changed files with 620 additions and 589 deletions
+8 -8
View File
@@ -15,14 +15,14 @@ var clayConfig = new ClayConfig(settings, config, $mainForm);
clayConfig.on(clayConfig.EVENTS.BEFORE_BUILD, function() {
// register components here
this.registerComponent(require('./components/heading'));
this.registerComponent(require('./components/text'));
this.registerComponent(require('./components/footer'));
this.registerComponent(require('./components/input'));
this.registerComponent(require('./components/color'));
this.registerComponent(require('./components/select'));
this.registerComponent(require('./components/toggle'));
this.registerComponent(require('./components/submit'));
this.registerComponent(require('pebble-clay-components/dist/components/heading'));
this.registerComponent(require('pebble-clay-components/dist/components/text'));
this.registerComponent(require('pebble-clay-components/dist/components/footer'));
this.registerComponent(require('pebble-clay-components/dist/components/input'));
this.registerComponent(require('pebble-clay-components/dist/components/color'));
this.registerComponent(require('pebble-clay-components/dist/components/select'));
this.registerComponent(require('pebble-clay-components/dist/components/toggle'));
this.registerComponent(require('pebble-clay-components/dist/components/submit'));
});
clayConfig.on(clayConfig.EVENTS.AFTER_BUILD, function() {