Skip to content

Commit b527773

Browse files
author
uim
committed
Initial
1 parent 5726dcd commit b527773

File tree

6 files changed

+49
-14
lines changed

6 files changed

+49
-14
lines changed

dub.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
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+
}

dub.selections.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
}

dub.userprefs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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>

source/app.d

Lines changed: 0 additions & 6 deletions
This file was deleted.

source/uim/angular/module_.d

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

source/uim/angular/package.d

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module uim.angular;
2+
3+
public import uim.angular.module_;

0 commit comments

Comments
 (0)