Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: migrate build script to typescript #3423
base: master
Are you sure you want to change the base?
refactor: migrate build script to typescript #3423
Changes from all commits
2935475
2badba7
ad8c426
eedff42
df75c79
7bf568a
4c51a80
fbb0e61
fd80ef2
f5b38a7
7b6c3b9
a8c12ea
e2097cc
c01fb85
c7a7247
a49c8a2
342432a
9e8efd8
2e94f4c
6b6c4ea
136bd49
3e1536a
2528190
34b1cef
cecc10e
adb15fe
a05df3f
8cb082b
b656d31
40daa1c
717135f
e8e30eb
212e548
652dfc8
d3acd81
09a2fcc
f5fac70
2f782e7
1a1f47d
75a53d4
74d199f
0459723
3df75cf
24ff781
39821b7
00ed279
8bf03da
15ffa2b
02e679a
227995d
be73210
599ab9e
e71fcba
851d1af
81d6cfc
c5b5c9f
a42104e
add1c28
b776dc7
5b82b5d
0916549
b294a6a
93ff413
ba0a99a
c76a556
31103fe
5f7c9bb
5097c35
65a1873
a699313
7942128
bdc0ad0
b87f48a
63a4ddd
647fa16
6f8bb5d
cc3d228
71e9581
32bf9bd
b03f8df
aa8cdb3
2fdab4c
1c9828e
6c129b6
6d6c179
df5aaae
fca9e36
6a26d06
1541bc7
1237899
5268fe2
324e278
ad7268c
1ec94b3
4bf9c1b
f377a66
b96f142
5bb3fde
a08e8fb
9059384
7007d2f
79fc28e
5bba79d
84fa86c
7e49ca8
4820f6a
e1c67c5
15f3aab
98bf565
c93d5a1
fb22081
7ecfba4
470cc18
6e0ef28
7a3730d
7ef191a
b3476a5
9590dd1
d6b0e2a
c0e918f
d142cd0
d15c741
279237c
0b68337
15c0759
76dee32
a220216
e974218
4215898
74a6afa
739005f
a043eb4
3e90306
375b437
52888af
72dd6f6
912f64b
d46470c
e2017c5
d0f0ccd
56c4b52
b62f48b
d939e07
e533908
beb787e
1bb48b6
31cf251
585aea2
ef0a30d
ec823dd
938f0cf
676cee6
614edc3
833a5dd
7ca813e
5cdf0a5
b501290
dd0f128
fb27678
cf6cf4f
791ee89
9fe2983
0c3d852
2abe64b
67217c8
6ab5fe7
534d4f4
8f1941a
95a6ec8
4be58ec
45314e4
073072b
4289081
b09334e
c685dce
be99d8d
dbe2970
37ef4ca
b94707f
bf6f225
cf245dc
509a864
9d516a5
745127b
54df453
6f38f01
0ffcba4
99bbcb5
e57dc5d
ed67303
cc1ff86
35b1605
feadb64
5618c7c
19325be
ccd1a61
d09b015
cb5f399
b5bb7b0
15fc371
af6f3d5
37c7a07
e870cbc
0275113
c764d35
a8a0c64
522f2c1
8939a79
171debb
f7ffdc3
753bde5
eb2cedd
a879d00
446b818
a4132d0
d365f5d
d6ec9fa
8a71248
42c2479
f244667
039bf70
fdea4b6
a1a9c86
b3d5685
a0d6ff8
1dfa3c7
29a71e7
3241e7c
b5c77c4
e52f654
cfad022
d18e1af
38e0054
c5928da
1cb5862
327c6b6
a6116ed
884bbe6
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is
import.meta.url
here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is an alternative way of getting the current
currentFilePath
andcurrentDirPath
. Apprently__dirname
and and__filename
are not in available in es modules.Value of
import.meta.url
in/scripts/index.ts
Reference: Alternative for __dirname in Node.js when using ES6 modules
This file was deleted.