Skip to content

Commit 353ee01

Browse files
Issue #129 Fixes neutralino.d.ts by replacing export with declare for TypeScript compatibility (#134)
Co-authored-by: Shalitha Suranga <[email protected]>
1 parent f190058 commit 353ee01

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

build.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ const typeFiles = getTypeDefinitionFiles();
170170
const writeDts = (filepath, definitions) => {
171171
// A 'declare' modifier cannot be used in an already ambient context.
172172
definitions = definitions.replaceAll ('declare namespace', 'namespace')
173+
definitions = definitions.replaceAll('export enum', 'declare enum')
173174
definitions = definitions.replaceAll ('declare function', 'function')
174175

175176
// Read the type definition files

yarn.lock

+24-7
Original file line numberDiff line numberDiff line change
@@ -1339,6 +1339,15 @@ chalk@^2.4.2:
13391339
escape-string-regexp "^1.0.5"
13401340
supports-color "^5.3.0"
13411341

1342+
chalk@^2.4.2:
1343+
version "2.4.2"
1344+
resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
1345+
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
1346+
dependencies:
1347+
ansi-styles "^3.2.1"
1348+
escape-string-regexp "^1.0.5"
1349+
supports-color "^5.3.0"
1350+
13421351
chalk@^4.0.0:
13431352
version "4.1.2"
13441353
resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
@@ -1466,6 +1475,11 @@ escape-string-regexp@^1.0.5:
14661475
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
14671476
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
14681477

1478+
escape-string-regexp@^1.0.5:
1479+
version "1.0.5"
1480+
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
1481+
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
1482+
14691483
escape-string-regexp@^4.0.0:
14701484
version "4.0.0"
14711485
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
@@ -1938,13 +1952,6 @@ minimatch@^3.0.5:
19381952
dependencies:
19391953
brace-expansion "^1.1.7"
19401954

1941-
minimatch@^3.1.1:
1942-
version "3.1.2"
1943-
resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
1944-
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1945-
dependencies:
1946-
brace-expansion "^1.1.7"
1947-
19481955
minimatch@^3.1.2:
19491956
version "3.1.2"
19501957
resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
@@ -1979,6 +1986,11 @@ object-keys@^1.0.12, object-keys@^1.1.1:
19791986
resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
19801987
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
19811988

1989+
object-keys@^1.0.12, object-keys@^1.1.1:
1990+
version "1.1.1"
1991+
resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
1992+
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1993+
19821994
object-path@^0.11.8:
19831995
version "0.11.8"
19841996
resolved "https://registry.npmjs.org/object-path/-/object-path-0.11.8.tgz"
@@ -2262,6 +2274,11 @@ semver@^7.5.4:
22622274
resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz"
22632275
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
22642276

2277+
2278+
version "7.0.0"
2279+
resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz"
2280+
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
2281+
22652282
serialize-javascript@^6.0.1:
22662283
version "6.0.2"
22672284
resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz"

0 commit comments

Comments
 (0)