Skip to content

Commit 32d78c7

Browse files
committed
Remove Jam and SPM support
1 parent cb02323 commit 32d78c7

File tree

6 files changed

+7
-53
lines changed

6 files changed

+7
-53
lines changed

.spmignore

-9
This file was deleted.

LICENSE-MIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 Denis Sikuler
1+
Copyright (c) 2014-2018 Denis Sikuler
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

README.md

+3-23
Original file line numberDiff line numberDiff line change
@@ -4,50 +4,30 @@ Functions to create and call functions and evaluate expressions.
44

55
[![NPM version](https://badge.fury.io/js/eva.png)](http://badge.fury.io/js/eva)
66
[![Build Status](https://travis-ci.org/gamtiq/eva.png)](https://travis-ci.org/gamtiq/eva)
7-
[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)
7+
[![Built with Grunt](https://gruntjs.com/cdn/builtwith.png)](http://gruntjs.com/)
88

99
## Installation
1010

1111
### Node
1212

1313
npm install eva
1414

15-
### [Component](https://github.com/componentjs/component)
16-
17-
component install gamtiq/eva
18-
19-
### [Jam](http://jamjs.org)
20-
21-
jam install eva
22-
2315
### [Bower](http://bower.io)
2416

2517
bower install eva
2618

27-
### [SPM](http://spmjs.io)
28-
29-
spm install eva
30-
3119
### AMD, <script>
3220

3321
Use `dist/eva.js` or `dist/eva.min.js` (minified version).
3422

3523
## Usage
3624

37-
### Node, Component, SPM
25+
### Node
3826

3927
```js
4028
var eva = require("eva");
4129
```
4230

43-
### Jam
44-
45-
```js
46-
require(["eva"], function(eva) {
47-
...
48-
});
49-
```
50-
5131
### AMD
5232

5333
```js
@@ -137,5 +117,5 @@ Add unit tests for any new or changed functionality.
137117
Lint and test your code using [Grunt](http://gruntjs.com/).
138118

139119
## License
140-
Copyright (c) 2014 Denis Sikuler
120+
Copyright (c) 2014-2018 Denis Sikuler
141121
Licensed under the MIT license.

jsdoc-conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"outputSourceFiles": true
1111
},
1212
"systemName": "eva",
13-
"copyright": "Copyright (c) 2014 Denis Sikuler",
13+
"copyright": "Copyright (c) 2014-2018 Denis Sikuler",
1414
"theme": "spacelab",
1515
"linenums": true
1616
}

package.json

+1-18
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,5 @@
4848
"method",
4949
"closure",
5050
"map"
51-
],
52-
"jam": {
53-
"main": "dist/eva.js",
54-
"include": [
55-
"dist",
56-
"doc",
57-
"README.md"
58-
]
59-
},
60-
"categories": [
61-
"Utilities"
62-
],
63-
"spm": {
64-
"main": "src/eva.js",
65-
"engines": {
66-
"seajs": "2.2.1"
67-
}
68-
}
51+
]
6952
}

src/eva.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* eva
33
* https://github.com/gamtiq/eva
44
*
5-
* Copyright (c) 2014 Denis Sikuler
5+
* Copyright (c) 2014-2018 Denis Sikuler
66
* Licensed under the MIT license.
77
*/
88

0 commit comments

Comments
 (0)