Skip to content

Commit

Permalink
refactor: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaello authored Oct 8, 2024
1 parent eddf6c2 commit 5523bc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/gulpfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const LIB_SOURCE = "../src/**/*.ts";
const tsConfigPath = "../tsconfig.json";

const transpileLibTypescript = () =>
src(LIB_SOURCE, { sourcemaps: true }) // initialize sourcemaps
.pipe(dest("../dist", { sourcemaps: '.' })); // write sourcemaps to the same directory
src(LIB_SOURCE, { sourcemaps: true }) // initialize sourcemaps
.pipe(dest("../dist", { sourcemaps: "." })); // write sourcemaps to the same directory

function compileTypeScript(content, file) {
const tsConfig = require(tsConfigPath);
Expand Down

0 comments on commit 5523bc9

Please sign in to comment.