Skip to content

Commit

Permalink
issues with package promary file
Browse files Browse the repository at this point in the history
  • Loading branch information
newbreedofgeek committed May 19, 2016
1 parent b072034 commit 4f6b640
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const steps =
- also if you want some default style, copy the source from `src/css/main.css` code into your project

### dev
- all node source is in src/index.js
- all node source is in src/main.js
- you need to install dependencies first `npm install`
- make any changes and run `npm run build` to transpile the jsx into `dist`
- the transpilation is run as a auto pre-publish task so it should usually be up to date when consumed via npm
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var gulp = require('gulp');
var babel = require('gulp-babel');

gulp.task('build', function (callback) {
return gulp.src('./src/index.js')
return gulp.src('./src/main.js')
.pipe(babel()) //this will also handle react transformations
.pipe(gulp.dest('./dist'));
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-stepzilla",
"version": "1.1.1",
"version": "1.2.0",
"description": "A react multi step component for data collection forms and other components.",
"main": "./dist/main.js",
"scripts": {
Expand Down
File renamed without changes.

0 comments on commit 4f6b640

Please sign in to comment.