We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d5c82b commit e67136eCopy full SHA for e67136e
plugins/config/index.js
@@ -4,6 +4,7 @@ const Promise = require('bluebird');
4
const fs = Promise.promisifyAll(require('fs'));
5
const path = require('path');
6
const utils = require('../../utils');
7
+const slash = require('slash');
8
9
var configs = [];
10
var basePackage = null;
@@ -105,7 +106,7 @@ const merge = function(from, to) {
105
106
107
const writeDebug = function(pack, outputDir) {
108
var overrides = configs.map(function(item) {
- return item.path;
109
+ return slash(item.path);
110
});
111
112
var debug = {
0 commit comments