Skip to content

Commit

Permalink
Added missing semicolons in PR #96.
Browse files Browse the repository at this point in the history
- Rebuilt artifacts.
  • Loading branch information
elycruz committed Jul 20, 2022
1 parent 995ab29 commit ce72cd0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
11 changes: 7 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/index.ts
Expand Up @@ -176,12 +176,12 @@ export = function plugin(options = {} as RollupPluginSassOptions): RollupPlugin
)
.then(([res, codeResult]) => {

res.stats.includedFiles.forEach(i => {this.addWatchFile(i)})
res.stats.includedFiles.forEach(i => {this.addWatchFile(i)});

return {
code: codeResult,
map: {mappings: res.map ? res.map.toString() : ''}
}
};

}); // @note do not `catch` here - let error propagate to rollup level.
},
Expand Down

0 comments on commit ce72cd0

Please sign in to comment.