-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(CLI): First cut {CLI methods, API integrations and basic functio…
…nality} First cut CLI tool with basic book baking helpers and methods \| Simple POST API integration with bubblin. Breaking changes to API integration and book \| cover publishing
- Loading branch information
1 parent
b823b26
commit 2d9f8f1
Showing
54 changed files
with
2,345 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
["presets": "es2015"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"token": "", | ||
"username": "", | ||
"email": "", | ||
|
||
"mode": { | ||
"HTML": "html", | ||
"CSS": "css", | ||
"JS": "js", | ||
"HEAD": "html" | ||
}, | ||
"urls": { | ||
"registrationURL": "https://bubbl.in/api/register", | ||
"baseURL": "https://bubbl.in/api/books/" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
*.DS_store | ||
node_modules/ | ||
npm-debug.log | ||
crust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
sudo: false | ||
language: node_js | ||
cache: | ||
directories: | ||
- node_modules | ||
notifications: | ||
email: false | ||
node_js: | ||
- '6.2' | ||
before_install: | ||
- npm i -g npm@latest | ||
before_script: | ||
- npm prune | ||
script: | ||
- npm run test:once | ||
after_success: | ||
- npm run semantic-release | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Bookiza Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
|
||
### [Unreleased] Added 2016-06-11 | ||
|
||
### [Unreleased] Removed 2016-06-11 | ||
|
||
### [Unreleased] Reverted 2016-06-11 | ||
|
||
--- | ||
|
||
### [Unreleased] Added 2016-06-10 | ||
- Added per batch request update and process_complete when last request returns `ok`. | ||
- PAGES_CHUNK_SIZE | ||
- Breaking Changes: Moved "book_id" to `.bookrc` instead of `package.json`, renamed `template.html`, `template.css` and `template.js` to `body.html`, `style.css` and `script.js` respectively for uniformity. Moved book.title to `.bookrc`. | ||
|
||
### [Unreleased] Reverted 2016-06-10 | ||
- Revert to .bookrc instead of book.json because book.json sounds like actual book. See `lib/manager.js` | ||
|
||
### [Unreleased] Removed 2016-06-10 | ||
- ProgressBar removed because unused | ||
|
||
--- | ||
|
||
### [Unreleased] Added 2016-06-9 | ||
- ES2015 for client registration. See `lib/register` | ||
- Return Promise object for .bookizarc file I/O. | ||
- "Arc Bookiza": "0.0.13", https://www.npmjs.com/package/arc-bookiza | ||
|
||
--- | ||
|
||
### [0.0.22] Added 2016-06-3 | ||
- Replace .bookrc with book.json for book-level mode & book_id information. | ||
- "npm-update-module": "1.0.4" - See `update` method in `bin/bin.js`. | ||
|
||
|
||
## 0.0.1 - 0.0.21 2016-05-31 | ||
### Added | ||
- This CHANGELOG file to hopefully serve as an evolving example of a standardized open source project CHANGELOG. | ||
- CNAME file to enable GitHub Pages custom domain | ||
- README now contains answers to common questions about CHANGELOGs | ||
- Good examples and basic guidelines, including proper date formatting. | ||
- Counter-examples: "What makes a unicorn cry?" | ||
- Framework website up! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,46 @@ | ||
# License(s) | ||
|
||
Dual license | Offerings to be decided. | ||
THIS REPO IS CURRENTLY UNLICENSED. | ||
|
||
TODO: Dual license | To be decided. | ||
|
||
|
||
----------------------------------------------------------------------------- | ||
----------------------------------------------------------------------------- | ||
___. __ .__ | ||
\_ |__ ____ ____ | | _|__|____________ | ||
| __ \ / _ \ / _ \| |/ / \___ /\__ \ | ||
| \_\ ( <_> | <_> ) <| |/ / / __ \_ | ||
|___ /\____/ \____/|__|_ \__/_____ \(____ / | ||
\/ \/ \/ \/ | ||
|
||
----------------------------------------------------------------------------- | ||
----------------------------------------------------------------------------- | ||
|
||
The MIT License | ||
|
||
Copyright (c) 2015-2016+ Marvin Danig and The Bubblin Foundation *. | ||
|
||
See https://github.com/bubblin/bookiza/contributors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
|
||
THE SOFTWARE. | ||
|
||
----------------------------------------------------------------------------- | ||
----------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
----------------------------------------------------------------------------- | ||
----------------------------------------------------------------------------- | ||
___. __ .__ | ||
\_ |__ ____ ____ | | _|__|____________ | ||
| __ \ / _ \ / _ \| |/ / \___ /\__ \ | ||
| \_\ ( <_> | <_> ) <| |/ / / __ \_ | ||
|___ /\____/ \____/|__|_ \__/_____ \(____ / | ||
\/ \/ \/ \/ | ||
|
||
----------------------------------------------------------------------------- | ||
----------------------------------------------------------------------------- | ||
|
||
The MIT License | ||
|
||
Copyright (c) 2015-2016+ Marvin Danig and The Bubblin Foundation *. | ||
|
||
See https://github.com/bubblin/bookiza/contributors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
|
||
THE SOFTWARE. | ||
|
||
----------------------------------------------------------------------------- | ||
----------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.