Skip to content

Commit

Permalink
fix: #4 address all tempate file issues
Browse files Browse the repository at this point in the history
  • Loading branch information
blackfalcon committed Jul 31, 2019
1 parent a72f87e commit b2c339d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions template/.gitignore.temp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_modules/
## Sass files built on demand from Token files
demo/sass/_*.scss
tokens/
altImports/

## CSS built from Sass process
demo/css
Expand Down
3 changes: 0 additions & 3 deletions template/.travis.temp
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ before_script:
- gulp processImportsVariable
- npm run stylefluxCanonical
- npm run stylefluxVariable
- gulp reprocessClean
- npm run distTokens
- npm run sassRender
- npm run distJS
- npm run copyResources
- npm run copyDocs

after_success:
- npx semantic-release
Expand Down
4 changes: 2 additions & 2 deletions template/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ gulp.task('processImportsCanonical', function() {
)

// Output final CSS in destination
.pipe(gulp.dest('./src/altImportsCanonical/'))
.pipe(gulp.dest('./src/altImports/canonical/'))
);
});

Expand Down Expand Up @@ -177,7 +177,7 @@ gulp.task('processImportsVariable', function() {
)

// Output final CSS in destination
.pipe(gulp.dest('./src/altImportsVariable/'))
.pipe(gulp.dest('./src/altImports/variable/'))
);
});

Expand Down

0 comments on commit b2c339d

Please sign in to comment.