Skip to content

Commit

Permalink
fix rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed May 11, 2019
1 parent 54b0823 commit b58e7e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
File renamed without changes.
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
var gulp = require('gulp');
var concat = require('gulp-concat');
var rename = require('gulp-rename');
var webpackStream = require('webpack-stream');
var webpack = require('webpack');
var createWebpackConfig = require('./webpack.base');
Expand Down Expand Up @@ -160,8 +161,9 @@ function build_jsrsasign(){
}

function copy_ts(){
return gulp.src('index.d.ts')
.pipe(gulp.dest('dist/oidc-client.d.ts'));
return gulp.src('./index.d.ts')
.pipe(rename('oidc-client.d.ts'))
.pipe(gulp.dest('./dist/'));
}

// putting it all together
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"express": "^4.16.4",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-rename": "^1.4.0",
"jsrsasign": "^8.0.12",
"mocha": "^5.2.0",
"natives": "^1.1.6",
Expand Down

0 comments on commit b58e7e6

Please sign in to comment.