Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit ff7fd27

Browse files
.gitignore
1 parent 04395e1 commit ff7fd27

File tree

6 files changed

+109
-16
lines changed

6 files changed

+109
-16
lines changed

‎.gitignore‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Node rules:
2+
## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
3+
.grunt
4+
5+
## Dependency directory
6+
## Commenting this out is preferred by some people, see
7+
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
8+
node_modules
9+
10+
# Book build output
11+
_book
12+
13+
# eBook build output
14+
*.epub
15+
*.mobi
16+
*.pdf

‎_book/gitbook/gitbook-plugin-livereload/plugin.js‎

Lines changed: 0 additions & 11 deletions
This file was deleted.

‎_book/index.html‎

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ <h1 class="search-results-title">No results matching "<span class='search-query'
318318
<script>
319319
var gitbook = gitbook || [];
320320
gitbook.push(function() {
321-
gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":["livereload"],"pluginsConfig":{"livereload":{},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"README.md","mtime":"2020年11月08日T12:43:06.362Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020年11月08日T13:03:54.128Z"},"basePath":".","book":{"language":""}});
321+
gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"README.md","mtime":"2020年11月08日T12:43:06.362Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020年11月08日T13:12:01.262Z"},"basePath":".","book":{"language":""}});
322322
});
323323
</script>
324324
</div>
@@ -328,10 +328,6 @@ <h1 class="search-results-title">No results matching "<span class='search-query'
328328
<script src="gitbook/theme.js"></script>
329329

330330

331-
<script src="gitbook/gitbook-plugin-livereload/plugin.js"></script>
332-
333-
334-
335331
<script src="gitbook/gitbook-plugin-search/search-engine.js"></script>
336332

337333

‎gulpfile.js‎

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const gulp = require('gulp');
2+
const gulpLoadPlugins = require('gulp-load-plugins');
3+
4+
const $ = gulpLoadPlugins();
5+
6+
gulp.task('publish', () => {
7+
console.log('Publish Gitbook (_book) to Github Pages');
8+
return gulp.src('./_book/**/*')
9+
.pipe($.ghPages({
10+
origin: 'origin',
11+
branch: 'gh--pages'
12+
}));
13+
});

‎package.json‎

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "package.json",
3+
"version": "1.0.0",
4+
"description": "dependencies",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/YeasirArafatRatul/hunt_python-Bangla-E-book.git"
12+
},
13+
"keywords": [
14+
"python"
15+
],
16+
"author": "yeasir arafat ratul",
17+
"license": "ISC",
18+
"bugs": {
19+
"url": "https://github.com/YeasirArafatRatul/hunt_python-Bangla-E-book/issues"
20+
},
21+
"homepage": "https://github.com/YeasirArafatRatul/hunt_python-Bangla-E-book#readme"
22+
}

‎yarn-error.log‎

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
Arguments:
2+
C:\Program Files\nodejs\node.exe C:\Users\ASUS-PC\AppData\Roaming\npm\node_modules\yarn\bin\yarn.js add gulp gulp-gh--pages gulp-load-plugins --save-dev
3+
4+
PATH:
5+
C:\Users\ASUS-PC\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\local\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\usr\bin;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\ASUS-PC\bin;C:\Program Files\Postgresql12円\bin;C:\Program Files\Postgresql12円\lib;C:\Users\ASUS-PC\AppData\Local\Programs\Python\Python36;C:\Users\ASUS-PC\AppData\Local\Programs\Python\Python36\Scripts;C:\Program Files\Dart\dart-sdk\bin;C:\Windows\System32;C:\Program Files\Git\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\System32\OpenSSH;C:\Program Files\nodejs;C:\ProgramData\chocolatey\bin;C:\Users\ASUS-PC\AppData\Local\Programs\Python\Python38\Scripts;C:\Users\ASUS-PC\AppData\Local\Programs\Python\Python38;C:\Users\ASUS-PC\AppData\Local\Programs\Python\Python36\Scripts;C:\Users\ASUS-PC\AppData\Local\Programs\Python\Python36;C:\Microsoft VS Code\bin;C:\WINDOW;.;C:\WINDOWS\system3;C:\Program Files\Postgresql12円\lib;C:\Program Files\Postgresql12円\bin;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\src\flutter\bin;C:\Users\ASUS-PC\AppData\Local\Microsoft\WindowsApps;C:\Users\ASUS-PC\AppData\Roaming\npm;C:\Program Files\Git\usr\bin\vendor_perl;C:\Program Files\Git\usr\bin\core_perl
6+
7+
Yarn version:
8+
1.22.10
9+
10+
Node version:
11+
12.19.0
12+
13+
Platform:
14+
win32 x64
15+
16+
Trace:
17+
Error: https://registry.yarnpkg.com/gulp-gh--pages: Not found
18+
at Request.params.callback [as _callback] (C:\Users\ASUS-PC\AppData\Roaming\npm\node_modules\yarn\lib\cli.js:66988:18)
19+
at Request.self.callback (C:\Users\ASUS-PC\AppData\Roaming\npm\node_modules\yarn\lib\cli.js:140662:22)
20+
at Request.emit (events.js:314:20)
21+
at Request.<anonymous> (C:\Users\ASUS-PC\AppData\Roaming\npm\node_modules\yarn\lib\cli.js:141634:10)
22+
at Request.emit (events.js:314:20)
23+
at IncomingMessage.<anonymous> (C:\Users\ASUS-PC\AppData\Roaming\npm\node_modules\yarn\lib\cli.js:141556:12)
24+
at Object.onceWrapper (events.js:420:28)
25+
at IncomingMessage.emit (events.js:326:22)
26+
at endReadableNT (_stream_readable.js:1223:12)
27+
at processTicksAndRejections (internal/process/task_queues.js:84:21)
28+
29+
npm manifest:
30+
{
31+
"name": "package.json",
32+
"version": "1.0.0",
33+
"description": "dependencies",
34+
"main": "index.js",
35+
"scripts": {
36+
"test": "echo \"Error: no test specified\" && exit 1"
37+
},
38+
"repository": {
39+
"type": "git",
40+
"url": "git+https://github.com/YeasirArafatRatul/hunt_python-Bangla-E-book.git"
41+
},
42+
"keywords": [
43+
"python"
44+
],
45+
"author": "yeasir arafat ratul",
46+
"license": "ISC",
47+
"bugs": {
48+
"url": "https://github.com/YeasirArafatRatul/hunt_python-Bangla-E-book/issues"
49+
},
50+
"homepage": "https://github.com/YeasirArafatRatul/hunt_python-Bangla-E-book#readme"
51+
}
52+
53+
yarn manifest:
54+
No manifest
55+
56+
Lockfile:
57+
No lockfile

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /