-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of ssh://github.com/johnrengelman/shadow into m…
…inimize-project-excludes-tests
- Loading branch information
Showing
74 changed files
with
17,968 additions
and
954 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
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
This file was deleted.
Oops, something went wrong.
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
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,8 @@ | ||
apply plugin: "com.moowork.node" | ||
|
||
node { | ||
yarnVersion = '1.5.1' | ||
} | ||
|
||
tasks.yarn_build.inputs.files project.fileTree('src/docs') | ||
tasks.yarn_build.outputs.dir project.file('build/site') |
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 @@ | ||
{ | ||
"name": "shadow", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"repository": "[email protected]:johnrengelman/shadow.git", | ||
"author": "John Engelman <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"vuepress": "^0.14.2", | ||
"prismjs": "^1.15.0" | ||
}, | ||
"scripts": { | ||
"build": "vuepress build src/docs", | ||
"start": "vuepress dev src/docs" | ||
} | ||
} |
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,2 +1,3 @@ | ||
|
||
rootProject.name = 'shadow' | ||
enableFeaturePreview('STABLE_PUBLISHING') |
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,13 @@ | ||
<template> | ||
<a v-bind:href="absolutePath"><slot/></a> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
data () { | ||
return { | ||
absolutePath: "http://imperceptiblethoughts.com/shadow/api/com/github/jengelman/gradle/plugins/shadow/" + this.path | ||
} | ||
} | ||
} | ||
</script> |
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,35 @@ | ||
module.exports = { | ||
base: "/shadow/", | ||
dest: "build/site", | ||
ga: "UA-321220-4", | ||
themeConfig: { | ||
repo: "johnrengelman/shadow", | ||
editLinks: true, | ||
editLinkText: 'Help improve these docs!', | ||
logo: '/logo+type.svg', | ||
docsDir: 'src/docs', | ||
title: 'Gradle Shadow Plugin', | ||
nav: [ | ||
{ text: 'User Guide', link: '/introduction/' } | ||
], | ||
sidebar: [ | ||
'/', | ||
'/introduction/', | ||
'/getting-started/', | ||
'/configuration/', | ||
'/configuration/filtering/', | ||
'/configuration/dependencies/', | ||
'/configuration/merging/', | ||
'/configuration/relocation/', | ||
'/configuration/minimizing/', | ||
'/configuration/reproducible-builds/', | ||
'/custom-tasks/', | ||
'/application-plugin/', | ||
'/publishing/', | ||
'/multi-project/', | ||
'/plugins/', | ||
'/changes/', | ||
'/about/' | ||
] | ||
} | ||
} |
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 @@ | ||
$accentColor = #B66E3C | ||
$textColor = #5F3416 | ||
$borderColor = #9FB2CC |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.