Skip to content

Commit e48d787

Browse files
committed
fix missing package;
workaround mkdirp bug
1 parent de0a47a commit e48d787

File tree

3 files changed

+79
-1
lines changed

3 files changed

+79
-1
lines changed

package-lock.json

Lines changed: 52 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "qxl.demobrowser",
3+
"version": "1.0.0",
4+
"description": "A GUI framework application for qooxdoo demos",
5+
"main": "compile.js",
6+
"dependencies": {
7+
"async": "^3.1.0",
8+
"mkdirp": "^0.5.5",
9+
"upath": "^1.2.0",
10+
"walker": "^1.0.7"
11+
},
12+
"devDependencies": {},
13+
"scripts": {
14+
"test": "echo \"Error: no test specified\" && exit 1"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/qooxdoo/qxl.demobrowser.git"
19+
},
20+
"author": "",
21+
"license": "ISC",
22+
"bugs": {
23+
"url": "https://github.com/qooxdoo/qxl.demobrowser/issues"
24+
},
25+
"homepage": "https://github.com/qooxdoo/qxl.demobrowser#readme"
26+
}

tool/lib/DataGenerator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// 3rd party packages
99
var path = require('upath');
1010
var walker = require('walker');
11-
var mkdirp = require('mkdirp');
11+
var mkdirp = qx.tool.utils.Promisify.promisify(require('mkdirp'));
1212

1313
var DataGenerator = function (config) {
1414
if (config.verbose) {

0 commit comments

Comments
 (0)