Skip to content
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

OSOE-430: Support a single NE instance per solution on Linux, too, in Lombiq.NodeJs.Extensions #578

Merged
merged 42 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
db670ff
Remove Linux excluding condition.
sarahelsaig Oct 4, 2023
c9471fc
Properly notify if get-path fails.
sarahelsaig Oct 4, 2023
9593b68
Use environment variable instead of process call.
sarahelsaig Oct 4, 2023
dfe0b41
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 5, 2023
b53223d
Use the getCwd() method and ensure the symlinks are not resolved.
sarahelsaig Oct 5, 2023
d224dab
use getCwd() instead of process.cwd().
sarahelsaig Oct 5, 2023
31e1c91
submodule
sarahelsaig Oct 7, 2023
9214d85
Use path.join where applicable.
sarahelsaig Oct 7, 2023
b516a64
Fix require path.
sarahelsaig Oct 7, 2023
7fc8227
typo
sarahelsaig Oct 7, 2023
c1d1011
Improve stability directly after a page load.
sarahelsaig Oct 7, 2023
0a07f7f
Fix typo.
sarahelsaig Oct 7, 2023
2b72b2b
Fix doc.
sarahelsaig Oct 7, 2023
34f40ce
Improve error reporting.
sarahelsaig Oct 8, 2023
11392b9
Fix another edge case.
sarahelsaig Oct 8, 2023
34c7271
Handle SRC=! in the package.json instead.
sarahelsaig Oct 8, 2023
cafd340
Typo.
sarahelsaig Oct 8, 2023
c36d4af
I temporarily added 10x to every "timeout-minutes", this should be r…
sarahelsaig Oct 8, 2023
923f960
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 9, 2023
bb927ac
Revert " I temporarily added 10x to every "timeout-minutes", this sho…
sarahelsaig Oct 9, 2023
c70d636
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 9, 2023
c152554
More diagnostics.
sarahelsaig Oct 9, 2023
879cf12
Typo
sarahelsaig Oct 9, 2023
aca3e1b
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 10, 2023
5519bc0
Look for the project root instead of the current directory.
sarahelsaig Oct 10, 2023
9951433
Add and use get-project-directory.
sarahelsaig Oct 10, 2023
0612dc8
Export project path as environment variable.
sarahelsaig Oct 10, 2023
f05a5de
Relative path only on Windows.
sarahelsaig Oct 10, 2023
4c73902
Print more information if copy fails.
sarahelsaig Oct 11, 2023
c2c8d8d
Make directoryToCopy an absolute path from the project directory.
sarahelsaig Oct 11, 2023
37c42b1
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 13, 2023
e090e1f
Fix copy-assets.
sarahelsaig Oct 13, 2023
d672546
Fix Lombiq.VueJs process-helpers.js
sarahelsaig Oct 14, 2023
b91cbc9
Resolve ESlint warnings in Lombiq.NodeJs.Extensions/scripts/lint-styl…
sarahelsaig Oct 14, 2023
cd8ee2b
submodule
sarahelsaig Oct 16, 2023
1223fa8
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 16, 2023
d29962b
Use resolve here instead.
sarahelsaig Oct 17, 2023
49c29d8
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 17, 2023
15c9b18
possibly breaking change
sarahelsaig Oct 17, 2023
a8dfdd1
Merge remote-tracking branch 'origin/dev' into issue/OSOE-430-new
sarahelsaig Oct 18, 2023
20f6432
dummy commit to see if the "terser" thing is recurring
sarahelsaig Oct 18, 2023
08b3fa6
Updating submodules:
dministro Oct 18, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup Condition="'$([MSBuild]::IsOSUnixLike())' == 'false'">
<PropertyGroup>
<!-- Use a single installation of Node.js Extensions for all projects in the solution. Currently, only works on
Windows. -->
<UseGlobalNodeJsExtensionsNpmPackage>true</UseGlobalNodeJsExtensionsNpmPackage>
Expand All @@ -26,13 +26,13 @@
package dependencies instead of submodules. -->
<!--<PropertyGroup>
<NuGetBuild>true</NuGetBuild>
</PropertyGroup>-->
</PropertyGroup>-->

<!-- Uncomment this to run .NET static code analyzers during rebuilds. -->
<!--<PropertyGroup>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
</PropertyGroup>-->

<Import Project="tools/Lombiq.Analyzers/Lombiq.Analyzers/Build.props" />

<!-- This option hasn't improved the build time in this solution, but we'll keep it turned on regardless because it
Expand Down
Loading