Skip to content

Commit

Permalink
fix(config): fix slashes in debug config paths
Browse files Browse the repository at this point in the history
  • Loading branch information
wallw-teal committed Aug 16, 2019
1 parent 1d5c82b commit e67136e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const Promise = require('bluebird');
const fs = Promise.promisifyAll(require('fs'));
const path = require('path');
const utils = require('../../utils');
const slash = require('slash');

var configs = [];
var basePackage = null;
Expand Down Expand Up @@ -105,7 +106,7 @@ const merge = function(from, to) {

const writeDebug = function(pack, outputDir) {
var overrides = configs.map(function(item) {
return item.path;
return slash(item.path);
});

var debug = {
Expand Down

0 comments on commit e67136e

Please sign in to comment.