Skip to content

Commit 3b24a0b

Browse files
Convert project to TypeScript
1 parent e528ca8 commit 3b24a0b

20 files changed

Lines changed: 2951 additions & 2393 deletions

.gitattributes

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1 @@
1-
# Auto detect text files and perform LF normalization
21
* text=auto
3-
4-
# Custom for Visual Studio
5-
*.cs diff=csharp
6-
*.sln merge=union
7-
*.csproj merge=union
8-
*.vbproj merge=union
9-
*.fsproj merge=union
10-
*.dbproj merge=union
11-
12-
# Standard to msysgit
13-
*.doc diff=astextplain
14-
*.DOC diff=astextplain
15-
*.docx diff=astextplain
16-
*.DOCX diff=astextplain
17-
*.dot diff=astextplain
18-
*.DOT diff=astextplain
19-
*.pdf diff=astextplain
20-
*.PDF diff=astextplain
21-
*.rtf diff=astextplain
22-
*.RTF diff=astextplain

.gitignore

Lines changed: 10 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,13 @@
1-
#############
2-
## Custom
3-
#############
1+
# WebStorm
2+
.idea/
43

5-
# IntelliJ IDEA
6-
.idea/workspace.xml
7-
.idea/tasks.xml
4+
# JavaScript and TypeScript
5+
lib/
6+
test/lib/
7+
typings/
88

9-
# NPM
10-
node_modules
9+
# Documentation
10+
docs/
1111

12-
# Used to generate .npmignore
13-
.gitattributes
14-
15-
############
16-
## Windows
17-
############
18-
19-
# Windows image file caches
20-
Thumbs.db
21-
22-
# Folder config file
23-
Desktop.ini
24-
25-
#############
26-
## Windows and OS X
27-
#############
28-
29-
# Windows image file caches
30-
Thumbs.db
31-
ehthumbs.db
32-
33-
# Folder config file
34-
Desktop.ini
35-
36-
# Recycle Bin used on file shares
37-
$RECYCLE.BIN/
38-
39-
# Mac crap
40-
.DS_Store
12+
# Node.js
13+
node_modules/

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
node_js:
3+
- node
4+
- 6
5+
- 5
6+
- 4
7+
install:
8+
- npm install -g gulp
9+
- npm install -g typings
10+
- npm install
11+
- typings install
12+
script: gulp

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.0.0 ##
2+
3+
* Re-write to use node-xmlcreate module
4+
* Add support for document type definitions
5+
* Add support for CDATA handlers
6+
* Standardize option formats
7+
18
## 1.0.0 ##
29

310
* First stable release

NOTICE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
js2xmlparser
2-
Copyright (C) 2012 Michael Kourlas and other contributors
2+
Copyright (C) 2016 Michael Kourlas

0 commit comments

Comments
 (0)