Skip to content

Commit 4752a84

Browse files
committed
add js-primer
1 parent 9f8cd2c commit 4752a84

File tree

5 files changed

+12
-0
lines changed

5 files changed

+12
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@
88
path = repo/The-Little-Book-on-CoffeeScript
99
url = https://github.com/minghai/library
1010
branch = gh-pages
11+
[submodule "repo/js-primer"]
12+
path = repo/js-primer
13+
url = https://github.com/asciidwango/js-primer

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ module.exports.get = function get(ext = ".*") {};
4747
このコーパスは次の文書を含んでいます。
4848
それぞれの文書のライセンスに基づき再配布されています。
4949

50+
- [js-primer](https://github.com/asciidwango/js-primer)
51+
- License: <https://github.com/asciidwango/js-primer/blob/master/LICENSE>
5052
- [JavaScript-Plugin-Architecture](https://github.com/azu/JavaScript-Plugin-Architecture)
5153
- License: <https://github.com/azu/JavaScript-Plugin-Architecture#license>
5254
- [Introduction-to-Add-on-Development-in-Blender](https://github.com/nutti/Introduction-to-Add-on-Development-in-Blender)

build.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ function copy(repoObject, pattern) {
3232

3333
function copyTask() {
3434
return Promise.all([
35+
copy(Refs["js-primer"], "source/basic/**/*.md"),
3536
copy(Refs["JavaScript-Plugin-Architecture"], "ja/**/*.md"),
3637
copy(Refs["Introduction-to-Add-on-Development-in-Blender"], "body/chapter_**/*.md"),
3738
copy(Refs["The-Little-Book-on-CoffeeScript"], "coffeescript/chapters/ja_JP/**/*.md")

index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
const globby = require('globby');
44
const path = require("path");
55
const References = {
6+
"js-primer": {
7+
name: "js-primer",
8+
url: "https://github.com/asciidwango/js-primer",
9+
license: "https://github.com/asciidwango/js-primer/blob/master/LICENSE"
10+
},
611
"JavaScript-Plugin-Architecture": {
712
name: "JavaScript-Plugin-Architecture",
813
url: "https://github.com/azu/JavaScript-Plugin-Architecture",

repo/js-primer

Submodule js-primer added at 4e04d00

0 commit comments

Comments
 (0)