Skip to content

Commit 2f7a7b5

Browse files
authored
Merge pull request #62 from JeringTech/add-package-lock
Added packages.lock.jsons.
2 parents 2cd5d66 + 35a546f commit 2f7a7b5

18 files changed

+3657
-24
lines changed

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
##
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

6-
# Nuget
7-
nuget.config
8-
96
# User-specific files
107
*.suo
118
*.user

Jering.Javascript.NodeJS.sln

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1515
codecov.yml = codecov.yml
1616
Jering.Javascript.NodeJS.ruleset = Jering.Javascript.NodeJS.ruleset
1717
License.md = License.md
18+
NuGet.Config = NuGet.Config
1819
ReadMe.md = ReadMe.md
1920
ThirdPartyLicenses.txt = ThirdPartyLicenses.txt
2021
EndProjectSection

NuGet.Config

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
6+
</packageSources>
7+
</configuration>

azure-pipelines.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
nugetUnreleasedPrereleasePushEndpoint: "https://www.myget.org/F/jering/api/v3/index.json"
1515
outOfProcessBuildDependencies: ["nodejs"]
1616
codecovKey: "e5de9f48-fb06-43c6-8368-44de5cf7e5d4"
17+
cacheYarnPackages: true
1718
- template: templates/docs/main.yml@templates
1819
parameters:
1920
nugetRestoreEndpoints: "https://pkgs.dev.azure.com/JeremyTCD/_packaging/Main/nuget/v2"

perf/NodeJS/ConcurrencyBenchmarks.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public class ConcurrencyBenchmarks
1313
{
1414
private const string DUMMY_WARMUP_MODULE = "module.exports = (callback) => callback()";
1515
private const string DUMMY_CONCURRENCY_MODULE_FILE = "dummyConcurrencyModule.js";
16+
private static readonly string _projectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../../../Javascript"); // BenchmarkDotNet creates a project nested deep in bin
1617

1718
private ServiceProvider _serviceProvider;
1819
private INodeJSService _nodeJSService;
@@ -24,7 +25,7 @@ public void INodeJSService_Concurrency_MultiProcess_Setup()
2425
{
2526
var services = new ServiceCollection();
2627
services.AddNodeJS();
27-
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../.."));
28+
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = _projectPath);
2829
services.Configure<OutOfProcessNodeJSServiceOptions>(options => options.Concurrency = Concurrency.MultiProcess);
2930
_serviceProvider = services.BuildServiceProvider();
3031
_nodeJSService = _serviceProvider.GetRequiredService<INodeJSService>();
@@ -56,7 +57,7 @@ public void INodeJSService_Concurrency_None_Setup()
5657
{
5758
var services = new ServiceCollection();
5859
services.AddNodeJS();
59-
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../.."));
60+
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = _projectPath);
6061
_serviceProvider = services.BuildServiceProvider();
6162
_nodeJSService = _serviceProvider.GetRequiredService<INodeJSService>();
6263

@@ -85,7 +86,7 @@ public void INodeServices_Concurrency_Setup()
8586
var services = new ServiceCollection();
8687
services.AddNodeServices(options =>
8788
{
88-
options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../..");
89+
options.ProjectPath = _projectPath;
8990
options.WatchFileExtensions = null;
9091
});
9192
_serviceProvider = services.BuildServiceProvider();
File renamed without changes.
File renamed without changes.
File renamed without changes.

perf/NodeJS/Jering.Javascript.NodeJS.Performance.csproj

+6-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
<OutputType>Exe</OutputType>
66
<IsPackable>false</IsPackable>
77
<CodeAnalysisRuleSet>../../Jering.Javascript.NodeJS.ruleset</CodeAnalysisRuleSet>
8-
<DefaultItemExcludes>node_modules\**;$(DefaultItemExcludes)</DefaultItemExcludes>
8+
<DefaultItemExcludes>Javascript\node_modules\**;$(DefaultItemExcludes)</DefaultItemExcludes>
9+
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
10+
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
911
</PropertyGroup>
1012

1113
<ItemGroup>
@@ -15,17 +17,11 @@
1517
</ItemGroup>
1618

1719
<ItemGroup>
18-
<Content Include="dummyRealWorkloadModule.js" copyToOutputDirectory="PreserveNewest" />
19-
<Content Include="dummyLatencyModule.js" copyToOutputDirectory="PreserveNewest" />
20-
<Content Include="dummyConcurrencyModule.js" copyToOutputDirectory="PreserveNewest" />
20+
<ProjectReference Include="..\..\src\NodeJS\Jering.Javascript.NodeJS.csproj" />
2121
</ItemGroup>
2222

23-
<ItemGroup>
24-
<ProjectReference Include="..\..\src\NodeJS\Jering.Javascript.NodeJS.csproj" />
25-
</ItemGroup>
26-
27-
<Target Name="YarnInstall" BeforeTargets="DispatchToInnerBuilds;PreBuildEvent">
28-
<Yarn WorkingDirectory="." Command="run build" />
23+
<Target Name="JavascriptBuild" BeforeTargets="PreBuildEvent">
24+
<Yarn WorkingDirectory=".\Javascript" Command="run build" />
2925
</Target>
3026

3127
</Project>

perf/NodeJS/LatencyBenchmarks.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class LatencyBenchmarks
1414
private const string DUMMY_WARMUP_MODULE = "module.exports = (callback) => callback()";
1515
private const string DUMMY_LATENCY_MODULE_FILE = "dummyLatencyModule.js";
1616
private const string DUMMY_MODULE_IDENTIFIER = "dummyLatencyModuleIdentifier";
17+
private static readonly string _projectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../../../Javascript"); // BenchmarkDotNet creates a project nested deep in bin
1718

1819
private ServiceProvider _serviceProvider;
1920
private int _counter;
@@ -26,7 +27,7 @@ public void INodeJSService_Latency_InvokeFromFile_Setup()
2627
{
2728
var services = new ServiceCollection();
2829
services.AddNodeJS();
29-
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../.."));
30+
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = _projectPath);
3031
_serviceProvider = services.BuildServiceProvider();
3132
_nodeJSService = _serviceProvider.GetRequiredService<INodeJSService>();
3233
_counter = 0;
@@ -62,7 +63,7 @@ public async Task<DummyResult> INodeJSService_Latency_InvokeFromCache()
6263

6364
private string DummyModuleFactory()
6465
{
65-
return File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "../../../..", DUMMY_LATENCY_MODULE_FILE));
66+
return File.ReadAllText(Path.Combine(_projectPath, DUMMY_LATENCY_MODULE_FILE));
6667
}
6768

6869
[Obsolete]
@@ -72,7 +73,7 @@ public void INodeServices_Latency_Setup()
7273
var services = new ServiceCollection();
7374
services.AddNodeServices(options =>
7475
{
75-
options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../..");
76+
options.ProjectPath = _projectPath;
7677
options.WatchFileExtensions = null;
7778
});
7879
_serviceProvider = services.BuildServiceProvider();

perf/NodeJS/RealWorkloadBenchmarks.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public static void Main(string[] args)
2222
Console.WriteLine(""Hello world {0}!"");
2323
}}
2424
}}";
25+
private static readonly string _projectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../../../../../Javascript"); // BenchmarkDotNet creates a project nested deep in bin
2526

2627
private int _counter;
2728
private ServiceProvider _serviceProvider;
@@ -34,7 +35,7 @@ public void INodeJSService_RealWorkload_Setup()
3435
{
3536
var services = new ServiceCollection();
3637
services.AddNodeJS();
37-
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../.."));
38+
services.Configure<NodeJSProcessOptions>(options => options.ProjectPath = _projectPath); // Module loads prismjs from node_modules
3839
services.Configure<OutOfProcessNodeJSServiceOptions>(options => options.Concurrency = Concurrency.MultiProcess);
3940
_serviceProvider = services.BuildServiceProvider();
4041
_nodeJSService = _serviceProvider.GetRequiredService<INodeJSService>();
@@ -65,7 +66,7 @@ public async Task<string[]> INodeJSService_RealWorkload()
6566

6667
private string DummyModuleFactory()
6768
{
68-
return File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "../../../..", DUMMY_REAL_WORKLOAD_MODULE_FILE));
69+
return File.ReadAllText(Path.Combine(_projectPath, DUMMY_REAL_WORKLOAD_MODULE_FILE));
6970
}
7071

7172
[Obsolete]
@@ -75,7 +76,7 @@ public void INodeServices_RealWorkload_Setup()
7576
var services = new ServiceCollection();
7677
services.AddNodeServices(options =>
7778
{
78-
options.ProjectPath = Path.Combine(Directory.GetCurrentDirectory(), "../../../..");
79+
options.ProjectPath = _projectPath;
7980
options.WatchFileExtensions = null;
8081
});
8182
_serviceProvider = services.BuildServiceProvider();

0 commit comments

Comments
 (0)