Skip to content

Commit 6a5ca19

Browse files
committed
fixed build path com combine projects together
1 parent 8c9f8c9 commit 6a5ca19

4 files changed

Lines changed: 67 additions & 21 deletions

File tree

.npmignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
5+
# Folder config file
6+
Desktop.ini
7+
8+
# Recycle Bin used on file shares
9+
$RECYCLE.BIN/
10+
11+
# Windows Installer files
12+
*.cab
13+
*.msi
14+
*.msm
15+
*.msp
16+
17+
# Windows shortcuts
18+
*.lnk
19+
20+
# =========================
21+
# Operating System Files
22+
# =========================
23+
24+
# OSX
25+
# =========================
26+
27+
.DS_Store
28+
.AppleDouble
29+
.LSOverride
30+
31+
# Thumbnails
32+
._*
33+
34+
# Files that might appear in the root of a volume
35+
.DocumentRevisions-V100
36+
.fseventsd
37+
.Spotlight-V100
38+
.TemporaryItems
39+
.Trashes
40+
.VolumeIcon.icns
41+
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
bin/Microsoft.NodejsTools.WebRole.dll
50+
typings/
51+
obj/
52+
dev-tools/bin/compiler/
53+
dev-tools/build-data.json
54+
dev-tools/bin/java-home.json
55+
node_modules/

assets.njsproj

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -31,50 +31,41 @@
3131
<DebugSymbols>true</DebugSymbols>
3232
</PropertyGroup>
3333
<ItemGroup>
34+
<Content Include=".npmignore" />
3435
<Content Include="dev-tools\bin\compiler-help.txt" />
35-
<Content Include="dev-tools\build-data.json" />
3636
<Content Include="dev-tools\build.cmd" />
3737
<Content Include="dev-tools\build.sh" />
38-
<Content Include="install.cmd" />
39-
<Content Include="install.sh" />
38+
<Content Include="dev-tools\run-tests-server.cmd" />
39+
<Content Include="dev-tools\run-tests-server.sh" />
40+
<Content Include="LICENCE.md" />
4041
<Content Include="package.json" />
4142
<Content Include="README.md" />
42-
<Content Include="src\arrow-down.png" />
43-
<Content Include="src\arrow-right.png" />
44-
<Content Include="src\arrow-up.png" />
4543
<Content Include="src\bar-exception.css" />
4644
<Content Include="src\bar-window.css" />
4745
<Content Include="src\bar.css" />
48-
<Content Include="src\close.png" />
4946
<Content Include="src\dumps.css" />
5047
<Content Include="src\exception.css" />
5148
<Content Include="src\logs.css" />
52-
<Content Include="src\unbox.png" />
53-
<Content Include="tests\dumps-min.php" />
54-
<Content Include="tests\dumps.php" />
55-
<Content Include="tests\logs-exception.php" />
56-
<Content Include="tests\logs-info.php" />
57-
</ItemGroup>
58-
<ItemGroup>
59-
<TypeScriptCompile Include="typings\globals\node\index.d.ts" />
60-
<TypeScriptCompile Include="typings\index.d.ts" />
49+
<Content Include="tests\dumps-min.html" />
50+
<Content Include="tests\dumps.html" />
51+
<Content Include="tests\logs-exception.html" />
52+
<Content Include="tests\logs-info.html" />
6153
</ItemGroup>
6254
<ItemGroup>
6355
<Folder Include="dev-tools\" />
6456
<Folder Include="dev-tools\bin\" />
6557
<Folder Include="dev-tools\bin\compiler\" />
6658
<Folder Include="src\" />
6759
<Folder Include="tests\" />
68-
<Folder Include="typings\" />
69-
<Folder Include="typings\globals\" />
70-
<Folder Include="typings\globals\node\" />
7160
</ItemGroup>
7261
<ItemGroup>
7362
<Compile Include="dev-tools\bin\string.js" />
7463
<Compile Include="dev-tools\build.js" />
64+
<Compile Include="dev-tools\run-tests-server.js" />
7565
<Compile Include="install.js" />
7666
<Compile Include="src\dumps.js" />
7767
<Compile Include="src\logs.js" />
68+
<Compile Include="tests\index.js" />
7869
</ItemGroup>
7970
<!-- Do not delete the following Import Project. While this appears to do nothing it is a marker for setting TypeScript properties before our import that depends on them. -->
8071
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="False" />

dev-tools/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var fs = require('fs'),
88

99
// base MvcCoreForm javascript object name, it's filename and filed definitions directory
1010
var sourceDir = '../src/';
11-
var targetDir = '../../';
11+
var targetDir = '../../../';
1212

1313
// for development:
1414
var minimalize = true;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"download": "~5.0.0",
3333
"find-java-home": "~0.1.4"
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)