File tree Expand file tree Collapse file tree 6 files changed +49
-14
lines changed
Expand file tree Collapse file tree 6 files changed +49
-14
lines changed Original file line number Diff line number Diff line change 11{
2- "authors" : [
3- " uiman"
4- ],
5- "copyright" : " Copyright © 2019, uiman" ,
6- "description" : " A minimal D application." ,
7- "license" : " proprietary" ,
8- "name" : " uim-angular"
9- }
2+ "name" : " uim-angular" ,
3+ "authors" : [ " UI Manufaktur" ],
4+ "description" : " D library for working with Angular" ,
5+ "copyright" : " Copyright © 2019, UI Manufaktur UG" ,
6+ "license" : " Apache 2.0" ,
7+ "targetType" : " library" ,
8+ "dependencies" : {
9+ "vibe-d:data" : " ==0.8.5" ,
10+ "uim-core" : " ~>0.19.5" ,
11+ "uim-oop" : " ~>0.19.5"
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ {
2+ "fileVersion" : 1 ,
3+ "versions" : {
4+ "stdx-allocator" : " 2.77.5" ,
5+ "uim-core" : " 0.19.51" ,
6+ "uim-oop" : " 0.19.5" ,
7+ "vibe-d" : " 0.8.5"
8+ }
9+ }
Original file line number Diff line number Diff line change 1+ <Properties StartupItem="dub.json">
2+ <MonoDevelop.Ide.Workspace ActiveConfiguration="Default" PreferredExecutionTarget="cov" />
3+ <MonoDevelop.Ide.Workbench ActiveDocument="dub.json">
4+ <Files>
5+ <File FileName="dub.json" Line="1" Column="1" />
6+ </Files>
7+ </MonoDevelop.Ide.Workbench>
8+ <MonoDevelop.Ide.DebuggingService.Breakpoints>
9+ <BreakpointStore />
10+ </MonoDevelop.Ide.DebuggingService.Breakpoints>
11+ <MonoDevelop.Ide.DebuggingService.PinnedWatches />
12+ </Properties>
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ module uim.angular.module_ ;
2+
3+ class DAGModule {
4+ this () {}
5+
6+ bool opEqual (string txt) { return (toString == txt); }
7+ override string toString () { return " " ; }
8+ }
9+ auto AGModule () { return new DAGModule; }
10+
11+ unittest {
12+
13+ }
Original file line number Diff line number Diff line change 1+ module uim.angular ;
2+
3+ public import uim.angular.module_;
You can’t perform that action at this time.
0 commit comments