Skip to content

Commit

Permalink
fixed distro
Browse files Browse the repository at this point in the history
  • Loading branch information
Trey Smith committed Sep 16, 2021
1 parent d7ebfb5 commit 692c4d3
Show file tree
Hide file tree
Showing 3 changed files with 2,144 additions and 51 deletions.
7 changes: 7 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const gulp = require('gulp');

gulp.task('copy-executables', (cb) => {
gulp.src('./executables/*/**')
.pipe(gulp.dest('./dist/executables'))
cb();
});
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pdf2png-ts",
"version": "0.0.4",
"version": "0.0.5",
"description": "Takes a PDF-document and converts and delivers a PNG (Typescript Support and simplified dependencies)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -23,11 +23,11 @@
"@types/axios": "^0.14.0",
"@types/node": "^16.9.1",
"@types/tmp": "^0.2.1",
"gulp": "^4.0.2",
"typescript": "^4.4.3"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"build": "tsc && gulp copy-executables",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down
Loading

0 comments on commit 692c4d3

Please sign in to comment.