forked from node-opcua/node-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
42 lines (30 loc) · 1.14 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
test-cov: istanbul
istanbul:
istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --recursive --timeout 30000 --bail test
coveralls:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --exclude tmp
# literate_programming stuff
LP= "../node_modules/.bin/literate-programming"
LP_WIN= "..\\node_modules\\.bin\\literate-programming.cmd"
examples:
( cd documentation ; $(LP) creating_a_server.md )
( cd documentation ; $(LP) creating_a_client.md )
( cd documentation ; $(LP) create_a_weather_station.md )
( cd documentation ; $(LP) server_with_da_variables.md )
( cd documentation ; $(LP) server_with_method.md )
# construct the API javascript documentation
doc: examples
mkdir -p tmptmp/autogenerated
node code_gen/makedoc.js > tmptmp/autogenerated/a.js
autodoc tmptmp/autogenerated/a.js
# jsdoc -v tmptmp/autogenerated/a.js lib/nodeid.js -d=tmptmp/api_doc_js_doc
yuidoc
yuidoc:
npm install yuidocjs -g
build_tools:
npm install minifyjs -g
npm install browserify -g
build:
brfy.bat
ug:
node -e 'var NodeUglifier= require("node-uglifier");(new NodeUglifier("bin/simple_server.js")).uglify().exportToFile("a.js");'