Skip to content

Commit 156a76d

Browse files
committed
Some changes made for NPM.
1 parent a710a94 commit 156a76d

7 files changed

+32
-4949
lines changed

.npmignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
.*
1+
.*
2+
examples
3+
docs

.travis.yml

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ language: node_js
33
node_js:
44
- "node"
55
- "lts/*"
6-
- "8"
7-
- "7"
8-
- "6"
9-
- "5"
10-
- "4"
11-
126

137
install:
148
- npm install

docs/TAME-API.odt

273 Bytes
Binary file not shown.

docs/TAME-API.pdf

58 Bytes
Binary file not shown.

package.json

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
{
22
"name": "tame4",
3-
"version": "4.2",
3+
"version": "4.3.0",
44
"description": "TAME 4: TwinCAT ADS Made Easy",
5-
"main": "tame-w-comments.js",
6-
"directories": {
7-
"doc": "docs"
8-
},
5+
"main": "tame.js",
96
"repository": {
107
"type": "git",
118
"url": "git+https://github.com/tomcx/tame4.git"
129
},
13-
"keywords": ["ADS","Beckhoff","TwinCAT","PLC","TAME","TAME4"],
10+
"keywords": ["ADS","Beckhoff","TwinCAT","PLC","TAME","TAME4", "ads", "beckhoff", "twincat", "plc", "tame", "tame4"],
1411
"author": "Thomas Schmidt <[email protected]>",
1512
"license": "(MIT or GPL-3.0)",
1613
"bugs": {
1714
"url": "https://github.com/tomcx/tame4/issues"
1815
},
19-
"homepage": "http://tomcx.github.io/tame4/"
16+
"homepage": "http://tomcx.github.io/tame4/",
17+
"scripts": {
18+
"test": "npm run lint",
19+
"lint": "jshint tame.js"
20+
},
21+
"devDependencies": {
22+
"jshint": "^2.8.0"
23+
}
2024
}

release_notes.txt

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
TAME V4.3 Release Notes
2+
-----------------------
3+
4+
- Changed file names: For providing an NPM module I decided to rename the
5+
files to the common standart:
6+
7+
old new
8+
----------- --------------
9+
tame-w-comments.js tame.js
10+
tame.js tame.min.js
11+
12+
So tame.js is now the readable version and tame.min.js is the minified one.
13+
14+
- Bugfix: Minor errors fixed.
15+
16+
17+
18+
119
TAME V4.2 Release Notes
220
-----------------------
321

0 commit comments

Comments
 (0)