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 ac06c6b commit bf61971Copy full SHA for bf61971
src/config.js
@@ -1,6 +1,9 @@
1
var path = require( "path" ),
2
- config = require( "../config" );
+ config = require( process.env.JQ_PATH ?
3
+ process.env.JQ_PATH + "/plugins.jquery.com" :
4
+ "../config" );
5
6
+console.log( config.test );
7
function resolvePath( key, _default ) {
8
config[ key ] = path.resolve( __dirname, "..", config[ key ] || _default );
9
}
0 commit comments