Skip to content
This repository was archived by the owner on Aug 9, 2021. It is now read-only.

Commit 4ae2e6c

Browse files
committed
Remove qode from npm bins. This should be done by libs that use qode.
1 parent b06f2e2 commit 4ae2e6c

File tree

4 files changed

+5
-30
lines changed

4 files changed

+5
-30
lines changed

npm/cli.js

Lines changed: 0 additions & 24 deletions
This file was deleted.

npm/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
const { download } = require("./src/downloader");
22
const { extract } = require("./src/extractor");
33
const { setupQode } = require("./src/setup");
4+
const { qodePath } = require("./src/config");
45

56
module.exports = {
67
download,
78
extract,
8-
setupQode
9+
setupQode,
10+
qodePath
911
};

npm/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodegui/qode",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Qode is a lightly modified fork of Node.js that merges Node's event loop with Qt's event loop. It is designed to be used together with `@nodegui/nodegui`",
55
"main": "index.js",
66
"files": [
@@ -12,9 +12,6 @@
1212
"src/extractor.js",
1313
"src/setup.js"
1414
],
15-
"bin": {
16-
"qode": "cli.js"
17-
},
1815
"scripts": {
1916
"postinstall": "node install.js"
2017
},

src/qode.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "src/integration/node_integration.h"
99
#include "src/helpers/qode_helper.h"
1010

11-
std::string qodeVersion = "2.0.2";
11+
std::string qodeVersion = "2.0.3";
1212

1313
namespace qode {
1414

0 commit comments

Comments
 (0)