Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
fix(all): name es2016 to esnext
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jun 11, 2016
1 parent 669a29f commit dbe4bc7
Show file tree
Hide file tree
Showing 120 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ This library is part of the [Aurelia](http://www.aurelia.io/) platform and provi

Please see the individual readme file within each skeleton for an explanation of how to get setup.

* **skeleton-webpack** - This project is configured to use either the Babel or the TypeScript transpiler so that you can write your application using either language. It should work well with any standard text editor. This skeleton uses NPM for package management and Webpack for bundling.
* **skeleton-es2016** - This project is configured to use the Babel transpiler so that you can write your application in ES 2016 code. It should work well with any standard text editor. This skeleton uses JSPM for package management and SystemJS for loading and bundling.
* **skeleton-webpack** - This project is configured to use either the Babel (ESNext) or the TypeScript transpiler so that you can write your application using either language. It should work well with any standard text editor. This skeleton uses NPM for package management and Webpack for bundling.
* **skeleton-esnext** - This project is configured to use the Babel transpiler so that you can write your application with ESNext code. It should work well with any standard text editor. This skeleton uses JSPM for package management and SystemJS for loading and bundling.
* **skeleton-typescript** - This project is configured to use the TypeScript transpiler so that you can write your application using TypeScript. It should work well with any standard text editor, however it has been specially configured to work well with VSCode and Atom, including full TypeScript intellisense for app, unit test and e2e test code. This skeleton uses JSPM for package management and SystemJS for loading and bundling.
* **skeleton-typescript-aspnetcore** - This is an ASP.NET Core web project configured for building a .NET backend and an Aurelia front-end. It is configured for full TypeScript support, similar to the standard skeleton-typescript option. This skeleton uses JSPM for package management and SystemJS for loading and bundling.
* **skeleton-es2016-aspnetcore** - This is an ASP.NET Core web project pre-configured for building a .NET backend and an Aurelia front-end. It is configured for full ES 2016 support with Babel, similar to the standard skeleton-es2016 option. This skeleton uses JSPM for package management and SystemJS for loading and bundling.
* **skeleton-esnext-aspnetcore** - This is an ASP.NET Core web project pre-configured for building a .NET backend and an Aurelia front-end. It is configured for full ES Next support with Babel, similar to the standard skeleton-esnext option. This skeleton uses JSPM for package management and SystemJS for loading and bundling.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2020AC68-78E
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B7C5F4AE-7354-4122-89A5-2E1ADF8ADC10}"
ProjectSection(SolutionItems) = preProject
src\skeleton-navigation-es2016-vs\.gitignore = src\skeleton-navigation-es2016-vs\.gitignore
src\skeleton-navigation-esnext-vs\.gitignore = src\skeleton-navigation-esnext-vs\.gitignore
global.json = global.json
EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "skeleton-navigation-es2016-vs", "src\skeleton-navigation-es2016-vs\skeleton-navigation-es2016-vs.xproj", "{4AAFD9A8-008C-4ADF-8089-90C6ED4B96E3}"
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "skeleton-navigation-esnext-vs", "src\skeleton-navigation-esnext-vs\skeleton-navigation-esnext-vs.xproj", "{4AAFD9A8-008C-4ADF-8089-90C6ED4B96E3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;

namespace skeleton_navigation_es2016_vs.Controllers
namespace skeleton_navigation_esnext_vs.Controllers
{
public class HomeController : Controller
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Aurelia with ASP.Net Core using ES2016
# Aurelia with ASP.Net Core using ESNEXT

## Running The App

Expand Down Expand Up @@ -40,7 +40,7 @@ ASP.Net Core on Windows, OSX, or Linux. The instructions to do so are found
This assumes you are running from command line but Visual Studio users should be familiar with how to build and run the project
in the IDE.

>**Note:** This project requires the installation of the ASP.Net Core SDK 1.0 RC2 as well as the ASP.Net Core VS2015 Tooling Preview 1.
>**Note:** This project requires the installation of the ASP.Net Core SDK 1.0 RC2 as well as the ASP.Net Core VS2015 Tooling Preview 1.
They both may be found
[on this Microsoft page](https://www.microsoft.com/net/core#windows).

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"userSecretsId": "aspnet5-skeleton_navigation_es2016_vs-6df5fca9-b862-4931-8867-c46d52bbed68",
"userSecretsId": "aspnet5-skeleton_navigation_esnext_vs-6df5fca9-b862-4931-8867-c46d52bbed68",

"dependencies": {
"Microsoft.NETCore.App": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>4aafd9a8-008c-4adf-8089-90c6ed4b96e3</ProjectGuid>
<RootNamespace>skeleton_navigation_es2016_vs</RootNamespace>
<RootNamespace>skeleton_navigation_esnext_vs</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
Expand All @@ -17,4 +17,4 @@
<TypeScriptCompileBlocked>True</TypeScriptCompileBlocked>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dbe4bc7

Please sign in to comment.