-
-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make the NodeJS dependency to optional (#93)
* update AntDesign to 0.9.0 * add `use-less` parameter to allow the user to choose whether to use nodejs * add styles parameter * add Directory.Build.props * fix hosted index.html * add docs * translate the welcome pages
- Loading branch information
1 parent
6321849
commit 08ab432
Showing
24 changed files
with
341 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- Please keep this file and keep it in the same directory as package.json. | ||
This ensures that the WorkingDirectory of the build command in AntDesign.Pro.Template.csproj is correctly located to the current directory. --> | ||
<Project> | ||
<PropertyGroup Label="BasePath"> | ||
<SolutionDir Condition="'$(SolutionDir)'==''">$(MSBuildThisFileDirectory)</SolutionDir> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- Please keep this file and keep it in the same directory as package.json. | ||
This ensures that the WorkingDirectory of the build command in AntDesign.Pro.Template.Client.csproj is correctly located to the current directory. --> | ||
<Project> | ||
<PropertyGroup Label="BasePath"> | ||
<SolutionDir Condition="'$(SolutionDir)'==''">$(MSBuildThisFileDirectory)</SolutionDir> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
.template.config/templates/hosted/src/Client/Pages/Welcome.razor.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.pre { | ||
margin: 12px 0; | ||
padding: 12px 20px; | ||
background: #fff; | ||
box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), | ||
0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09); | ||
} |
Oops, something went wrong.