Skip to content

Commit e860645

Browse files
committed
Bump 2.2.0
1 parent d63a007 commit e860645

File tree

18 files changed

+41
-32
lines changed

18 files changed

+41
-32
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@ module.exports = grunt => {
3939

4040
// dev
4141
grunt.registerTask('dev', [
42-
'watch',
42+
'watch'
4343
]);
4444

4545
// test
@@ -81,4 +81,4 @@ module.exports = grunt => {
8181
});
8282
});
8383
}
84-
};
84+
};

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ All the modifications to the source code of System Runtime will rebuild the proj
172172

173173
## License
174174

175-
Copyright 2017 Erwan Carriou
175+
Copyright 2018 Erwan Carriou
176176

177177
Licensed under the Apache License, Version 2.0 (the "License");
178178
you may not use this file except in compliance with the License.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "system-runtime",
3-
"version": "2.1.3",
3+
"version": "2.2.0",
44
"description": "A JavaScript library that runs systems",
55
"license": "Apache-2.0",
66
"homepage": "https://designfirst.io/systemruntime/",

karma.conf.js

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.
@@ -19,18 +19,28 @@
1919
*/
2020

2121
module.exports = config => {
22-
// browers
23-
const browsers = ['ChromeHeadless'];
24-
25-
// reporters
26-
let reporters = ['progress', 'coverage'];
22+
const browsers = [
23+
'ChromeHeadless'
24+
];
25+
let reporters = [
26+
'progress',
27+
'coverage'
28+
];
29+
2730
if (process.env.TRAVIS) {
28-
reporters = ['progress', 'coverage', 'dots'];
31+
reporters = [
32+
'progress',
33+
'coverage',
34+
'dots'
35+
];
2936
}
3037

3138
config.set({
3239
basePath: './',
33-
frameworks: ['mocha', 'chai'],
40+
frameworks: [
41+
'mocha',
42+
'chai'
43+
],
3444
files: [
3545
'dist/system-runtime.min.js',
3646
'test/runtime/runtime-spec.js',
@@ -43,7 +53,9 @@ module.exports = config => {
4353
],
4454
reporters: reporters,
4555
preprocessors: {
46-
'dist/system-runtime.min.js': ['coverage']
56+
'dist/system-runtime.min.js': [
57+
'coverage'
58+
]
4759
},
4860
colors: true,
4961
autoWatch: true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "system-runtime",
3-
"version": "2.1.3",
3+
"version": "2.2.0",
44
"description": "A JavaScript library that runs systems",
55
"homepage": "https://designfirst.io/systemruntime/",
66
"keywords": [

src/banners/license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

src/banners/systemmodule-header.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.
@@ -19,11 +19,8 @@
1919
*/
2020

2121
/**
22-
* This module contains Runtime core system.
23-
*
2422
* @module system
25-
* @class system
26-
* @static
23+
* @description This module contains System Runtime core system.
2724
*/
2825

2926
'use strict';

src/behavior.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

src/component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

src/db.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* https://designfirst.io/systemruntime/
55
*
6-
* Copyright 2017 Erwan Carriou
6+
* Copyright 2018 Erwan Carriou
77
*
88
* Licensed under the Apache License, Version 2.0 (the "License");
99
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)