initial implementation

This commit is contained in:
Thomas Fussell 2020-03-21 10:59:00 -04:00
parent 2f5934f60e
commit 252dd76616
No known key found for this signature in database
GPG Key ID: B0BA09F5229A9D10
4 changed files with 3185 additions and 1 deletions

3
.gitignore vendored
View File

@ -16,4 +16,5 @@ Win32/
*.pyd
python/record.txt
python/xlntpyarrow.egg-info/
/x64/
/x64/
.envrc

16
release/.release-it.json Normal file
View File

@ -0,0 +1,16 @@
{
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/bumper": {
"out": {
"file": "CMakeLists.txt",
"type": "text/plain"
}
}
}
}

3139
release/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

28
release/package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "xlnt",
"version": "1.5.0",
"description": "Cross-platform user-friendly xlsx library for C++11+",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"@release-it/bumper": "^1.1.0",
"release-it": "^13.1.1"
},
"scripts": {
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tfussell/xlnt.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tfussell/xlnt/issues"
},
"homepage": "https://github.com/tfussell/xlnt#readme"
}