Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Nov 16, 2015
1 parent 1b34e2f commit 3aaa03f
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 25 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-route-recognizer",
"version": "0.9.0",
"version": "1.0.0-beta.1",
"description": "A lightweight JavaScript library that matches paths against registered routes. It includes support for dynamic and star segments and nested handlers.",
"keywords": [
"aurelia",
Expand All @@ -16,7 +16,7 @@
"url": "http://github.com/aurelia/route-recognizer"
},
"dependencies": {
"aurelia-path": "^0.11.0",
"aurelia-path": "^1.0.0-beta.1",
"core-js": "zloirock/core-js"
}
}
4 changes: 2 additions & 2 deletions build/tasks/doc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var typedocExtractor = require('gulp-typedoc-extractor');
var runSequence = require('run-sequence');

gulp.task('doc-generate', function(){
return gulp.src([paths.output + '*.d.ts', paths.doc + '/core-js.d.ts', './jspm_packages/github/aurelia/*/*.d.ts'])
return gulp.src([paths.output + '*.d.ts', paths.doc + '/core-js.d.ts', './jspm_packages/npm/*/*.d.ts'])
.pipe(typedoc({
target'es6',
includeDeclarationstrue,
Expand All @@ -30,4 +30,4 @@ gulp.task('doc', function(callback){
'doc-extract',
callback
);
});
});
26 changes: 10 additions & 16 deletions build/tasks/test.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
var gulp = require('gulp');
var karma = require('karma').server;
var Karma = require('karma').Server;

/**
* Run test once and exit
*/
gulp.task('test', function (done) {
karma.start({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true
}, function(e) {
done();
});
new Karma({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true
}, done).start();
});

/**
* Watch for file changes and re-run tests on each change
*/
gulp.task('tdd', function (done) {
karma.start({
configFile: __dirname + '/../../karma.conf.js'
}, function(e) {
done();
});
new Karma({
configFile: __dirname + '/../../karma.conf.js'
}, done).start();
});

/**
* Run test once with code coverage and exit
*/
gulp.task('cover', function (done) {
karma.start({
new Karma({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true,
reporters: ['coverage'],
Expand All @@ -40,7 +36,5 @@ gulp.task('cover', function (done) {
type: 'html',
dir: 'build/reports/coverage'
}
}, function (e) {
done();
});
}, done).start();
});
2 changes: 1 addition & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ System.config({
},

map: {
"aurelia-path": "github:aurelia/path@0.11.0",
"aurelia-path": "npm:aurelia-path@1.0.0-beta.1",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]",
Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.0.0-beta.1 (2015-11-16)


## 0.9.0 (2015-11-10)


Expand Down
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-route-recognizer",
"version": "0.9.0",
"version": "1.0.0-beta.1",
"description": "A lightweight JavaScript library that matches paths against registered routes. It includes support for dynamic and star segments and nested handlers.",
"keywords": [
"aurelia",
Expand All @@ -17,14 +17,15 @@
"type": "git",
"url": "http://github.com/aurelia/route-recognizer"
},
"jspmNodeConversion": false,
"jspm": {
"main": "aurelia-route-recognizer",
"format": "amd",
"directories": {
"lib": "dist/amd"
},
"dependencies": {
"aurelia-path": "github:aurelia/path@^0.11.0",
"aurelia-path": "npm:aurelia-path@^1.0.0-beta.1",
"core-js": "npm:core-js@^1.2.6"
},
"devDependencies": {
Expand All @@ -33,9 +34,13 @@
"core-js": "npm:core-js@^1.2.6"
}
},
"dependencies": {
"aurelia-path": "^1.0.0-beta.1",
"core-js": "^1.2.6"
},
"devDependencies": {
"aurelia-tools": "^0.1.12",
"babel-dts-generator": "^0.2.16",
"babel-dts-generator": "^0.2.17",
"babel-eslint": "^4.1.1",
"conventional-changelog": "0.0.11",
"del": "^1.1.0",
Expand All @@ -49,7 +54,7 @@
"gulp-typedoc": "^1.2.1",
"gulp-typedoc-extractor": "^0.0.8",
"jasmine-core": "^2.1.3",
"karma": "^0.12.28",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^5.2.2",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.3.1",
Expand Down

0 comments on commit 3aaa03f

Please sign in to comment.