Skip to content

Commit

Permalink
Merge branch 'release/0.0.7'
Browse files Browse the repository at this point in the history
* release/0.0.7:
  v0.0.7 release
  some more open source tools
  some more open source tools
  fixed npm commands
  refactored Travis CI build
  more work on structure
  removed
  v0.0.7 development
  • Loading branch information
gregoranders committed Mar 30, 2015
2 parents 1214bcd + 613148d commit e8d9f47
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ before_script:
- export DISPLAY=:99.0
- sudo chmod 1777 /dev/shm
- Xvfb :99.0 -extension RANDR > /dev/null &
- npm test > /dev/null
- npm run-script coverall > /dev/null
- node_modules/.bin/gulp build:release
- node_modules/.bin/gulp run:server &
- sleep 5
Expand Down
76 changes: 74 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,72 @@
[![Dependency Status][daviddm-image]][daviddm-url]
[![NPM version][npm-image]][npm-url]
[![Downloads][downloads-image]][npm-url]
[![Build Status][travis-image]][travis-url]
[![Coverage Status][coverall-image]][coverall-url]
[![License][license-image]][license-url]
[![Release][release-image]][release-url]
[![Tag][tag-image]][tag-url]
[![Node][node-image]][node-url]
[![Issues][issues-image]][issues-url]
[![Gitter][gitter-image]][gitter-url]

# angular-require-typescript-seed
**the AngularJS and RequireJS using TypeScript Seed**

[![Dependency Status][daviddm-image]][daviddm-url] [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coverall-image]][coverall-url] [![License][license-image]][license-url] [![Gitter][gitter-image]][gitter-url]

This project is an application skeleton for a typical [AngularJS](http://angularjs.org/) web app
using [RequireJS](http://requirejs.org/) written in [TypeScript](http://www.typescriptlang.org/).


## Building

In order to build ensure that you have [Git](http://git-scm.com/downloads) and [Node.js](http://nodejs.org/) installed.

### Manually
Clone a copy of the repo:

```
git clone https://github.com/gregoranders/arts.git
```

Change to the arts directory:

```
cd arts
```

Run build:

```
npm build
```

Run tests:

```
npm test
```

### NPM

```
npm install angular-require-typescript-seed
```

Change to the arts directory:

```
cd node_modules/angular-require-typescript-seed
```

Run tests:

```
npm test
```



[downloads-image]: http://img.shields.io/npm/dm/angular-require-typescript-seed.svg

[npm-url]: https://npmjs.org/package/angular-require-typescript-seed
Expand All @@ -25,4 +85,16 @@ using [RequireJS](http://requirejs.org/) written in [TypeScript](http://www.type
[gitter-image]: https://badges.gitter.im/gregoranders/arts.png

[license-url]: https://github.com/gregoranders/arts/blob/master/LICENSE
[license-image]: https://img.shields.io/npm/l/angular-require-typescript-seed.svg
[license-image]: https://img.shields.io/npm/l/angular-require-typescript-seed.svg

[issues-url]: https://github.com/gregoranders/arts/issues
[issues-image]: https://img.shields.io/github/issues-raw/gregoranders/arts.svg

[tag-url]: https://github.com/gregoranders/arts/tags
[tag-image]: https://img.shields.io/github/tag/gregoranders/arts.svg

[release-url]: https://github.com/gregoranders/arts/releases
[release-image]: https://img.shields.io/github/release/gregoranders/arts.svg

[node-url]: https://nodejs.org/
[node-image]: https://img.shields.io/node/v/angular-require-typescript-seed.svg
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "angular-require-typescript-seed",
"description": "angular-require-typescript-seed - the AngularJS and RequireJS using TypeScript Seed",
"version": "0.0.6",
"version": "0.0.7",
"homepage": "https://github.com/gregoranders/angular-require-typescript-seed",
"author": "Gregor Anders <gregor.anders@gmail.com>",
"license": "BSD-3-Clause",
"private": false,
"appPath": "./build/release",
"ignore": [
"**/.*",
"build",
Expand All @@ -16,7 +15,9 @@
],
"keywords": [
"angular",
"angularjs",
"require",
"requirejs",
"typescript",
"jasmine",
"gulp",
Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"title": "arts - the AngularJS and RequireJS using TypeScript Seed",
"name": "angular-require-typescript-seed",
"description": "angular-require-typescript-seed - the AngularJS and RequireJS using TypeScript Seed",
"version": "0.0.6",
"version": "0.0.7",
"homepage": "https://github.com/gregoranders/angular-require-typescript-seed",
"author": {
"email": "gregor.anders@gmail.com",
Expand All @@ -22,11 +22,14 @@
"url": "git://github.com/gregoranders/arts.git"
},
"engines": {
"node": "~0.10.0"
"node": "~0.10.0",
"node": "~0.12.0"
},
"keywords": [
"angular",
"angularjs",
"require",
"requirejs",
"typescript",
"jquery",
"jasmine",
Expand Down Expand Up @@ -80,12 +83,13 @@
},
"scripts": {
"transpile-config": "tsc --target ES5 --sourcemap --outDir ./conf conf/gulpconf.ts && tsc --target ES5 --sourcemap --outDir ./conf conf/gulpfunc.ts && tsc --target ES5 --sourcemap --outDir ./ gulpfile.ts",
"coverall": "gulp build && gulp run:test:unit:ci && cd build/development && mv test-coverage/*/lcov.info . && cat lcov.info | ../../node_modules/.bin/coveralls",
"postinstall": "bower install && webdriver-manager update && npm run-script transpile-config",

"prestart": "npm install",
"start": "gulp build && gulp run:server",

"pretest": "npm install && gulp build",
"test": "gulp run:test:unit:ci && cd build/development && mv test-coverage/*/lcov.info . && cat lcov.info | ../../node_modules/.bin/coveralls"
"test": "gulp run:test:unit"
}
}

0 comments on commit e8d9f47

Please sign in to comment.