Skip to content

Commit fc6543d

Browse files
authored
Merge pull request aurelia#1 from aurelia/master
upstream merge
2 parents 8b10f2a + ac9e149 commit fc6543d

File tree

575 files changed

+5918
-70516
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+5918
-70516
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![ZenHub](https://raw.githubusercontent.com/ZenHubIO/support/master/zenhub-badge.png)](https://zenhub.io)
44
[![Join the chat at https://gitter.im/aurelia/discuss](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/aurelia/discuss?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5+
[![CircleCI](https://circleci.com/gh/aurelia/skeleton-navigation.svg?style=shield)](https://circleci.com/gh/aurelia/skeleton-navigation)
56

67
This library is part of the [Aurelia](http://www.aurelia.io/) platform and provides production quality skeletons for people ready to build apps. There are various skeleton options available, depending on your platform and tooling choices.
78

@@ -11,9 +12,8 @@ This library is part of the [Aurelia](http://www.aurelia.io/) platform and provi
1112

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

14-
* **skeleton-es2016-webpack** - 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 NPM for package management and Webpack for bundling.
15-
* **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.
16-
* **skeleton-typescript-webpack** - 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. This skeleton uses NPM for package management and Webpack for bundling.
15+
* **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.
16+
* **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.
1717
* **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.
18-
* **skeleton-typescript-asp.net5** - This is an ASP.NET 5 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.
19-
* **skeleton-es2016-asp.net5** - This is an ASP.NET 5 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.
18+
* **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.
19+
* **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.

circle.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#####
2+
# Circle CI
3+
#
4+
# For running docker images on circle ci, see: https://circleci.com/docs/docker
5+
# For circle.yml explanation, see: https://circleci.com/docs/manually
6+
#####
7+
8+
machine:
9+
environment:
10+
AURELIA_LANGUAGE: unset
11+
node:
12+
version: 4.2.6
13+
14+
dependencies:
15+
pre:
16+
- npm install -g npm
17+
override:
18+
- npm install # we expect that peerDependencies will generate an error
19+
- npm run electron:setup
20+
21+
general:
22+
build_dir: skeleton-webpack
23+
24+
test:
25+
override:
26+
- npm run link:javascript
27+
- AURELIA_LANGUAGE=javascript npm test
28+
- npm run link:typescript
29+
- AURELIA_LANGUAGE=typescript npm test
30+
post:
31+
- npm run link:javascript
32+
- AURELIA_LANGUAGE=javascript npm run build
33+
- AURELIA_LANGUAGE=javascript npm run build:prod
34+
- AURELIA_LANGUAGE=javascript npm run electron:build
35+
- AURELIA_LANGUAGE=javascript npm run electron:package
36+
- npm run link:typescript
37+
- AURELIA_LANGUAGE=typescript npm run build
38+
- AURELIA_LANGUAGE=typescript npm run build:prod
39+
- AURELIA_LANGUAGE=typescript npm run electron:build
40+
- AURELIA_LANGUAGE=typescript npm run electron:package

skeleton-es2016-asp.net5/global.json

-6
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/.bowerrc

-3
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Home/About.cshtml

-7
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Home/Contact.cshtml

-17
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Home/Index.cshtml

-12
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Shared/Error.cshtml

-6
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Shared/_Layout.cshtml

-43
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Shared/_LoginPartial.cshtml

-22
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/Shared/_ValidationScriptsPartial.cshtml

-14
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/_ViewImports.cshtml

-3
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/Views/_ViewStart.cshtml

-3
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/package.json

-98
This file was deleted.

skeleton-es2016-asp.net5/src/skeleton-navigation-es2016-vs/project.json

-52
This file was deleted.

0 commit comments

Comments
 (0)