diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-15 11:33:24 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-15 11:33:24 +0200 |
commit | 663291c51507837689b7281be5c07802f19c3d0e (patch) | |
tree | 23fcddecc5d01f4d051cd117f3055007a9bc9784 /test | |
parent | 99253eeceaab70a7e85504b7867a9999d34890c4 (diff) | |
download | gitbook-663291c51507837689b7281be5c07802f19c3d0e.zip gitbook-663291c51507837689b7281be5c07802f19c3d0e.tar.gz gitbook-663291c51507837689b7281be5c07802f19c3d0e.tar.bz2 |
Output context as global for themes
Diffstat (limited to 'test')
-rw-r--r-- | test/node_modules/gitbook-plugin-dep1/package.json | 10 | ||||
-rw-r--r-- | test/node_modules/gitbook-plugin-dep2/package.json | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/test/node_modules/gitbook-plugin-dep1/package.json b/test/node_modules/gitbook-plugin-dep1/package.json new file mode 100644 index 0000000..908ca02 --- /dev/null +++ b/test/node_modules/gitbook-plugin-dep1/package.json @@ -0,0 +1,10 @@ +{ + "name": "gitbook-plugin-dep1", + "version": "1.0.0", + "engines": { + "gitbook": "*" + }, + "dependencies": { + "gitbook-plugin-dep2": "*" + } +}
\ No newline at end of file diff --git a/test/node_modules/gitbook-plugin-dep2/package.json b/test/node_modules/gitbook-plugin-dep2/package.json new file mode 100644 index 0000000..2046f5d --- /dev/null +++ b/test/node_modules/gitbook-plugin-dep2/package.json @@ -0,0 +1,7 @@ +{ + "name": "gitbook-plugin-dep2", + "version": "1.0.0", + "engines": { + "gitbook": "*" + } +}
\ No newline at end of file |