Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ yarn-error.log*
*.log

# lock
package-lock.json
yarn.lock

# generated
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
package-lock=false
package-lock=true
loglevel=error
55 changes: 46 additions & 9 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,26 @@ module.exports = {
target: '_self',
},
links: [
<<<<<<< HEAD
{ to: 'docs/cn/getting-started/quick-start',
label: 'Get Started',
position: 'left',
},
{ to: 'docs/cn/api/concepts',
=======
{
to: 'docs/en/getting-started/quick-start',
label: 'Get Started',
position: 'left',
},
{
to: 'docs/en/api/concepts',
>>>>>>> 487199cfc794bef9c3e1357a878003e555d19f3c
label: 'API',
position: 'left',
},
{ to: 'plugins',
{
to: 'plugins',
label: 'Plugins',
position: 'left',
},
Expand All @@ -45,14 +56,16 @@ module.exports = {
position: 'left',
emphasis: true,
},
{ href: 'https://twitter.com/gulpjs',
{
href: 'https://twitter.com/gulpjs',
logo: {
alt: 'Gulp on Twitter',
src: 'img/twitter.svg',
},
position: 'right'
},
{ href: 'https://medium.com/gulpjs',
{
href: 'https://medium.com/gulpjs',
logo: {
alt: 'The gulp blog',
src: 'img/medium.svg',
Expand All @@ -63,29 +76,44 @@ module.exports = {
},
footer: {
links: [
{ items: [
{
items: [
{ html: '<img src="/img/gulp-white-logo.svg" alt="gulp" href="/" />' }
]
},
{ title: 'Docs',
{
title: 'Docs',
items: [
<<<<<<< HEAD
{ to: 'docs/cn/getting-started/quick-start',
label: 'Getting Started',
},
{ to: 'docs/cn/api/concepts',
=======
{
to: 'docs/en/getting-started/quick-start',
label: 'Getting Started',
},
{
to: 'docs/en/api/concepts',
>>>>>>> 487199cfc794bef9c3e1357a878003e555d19f3c
label: 'API',
},
]
},
{ title: 'Community',
{
title: 'Community',
items: [
{ href: 'https://github.com/gulpjs/gulp',
{
href: 'https://github.com/gulpjs/gulp',
label: 'GitHub',
},
{ href: 'https://stackoverflow.com/questions/tagged/gulp',
{
href: 'https://stackoverflow.com/questions/tagged/gulp',
label: 'Stack Overflow',
},
{ href: 'https://twitter.com/gulpjs',
{
href: 'https://twitter.com/gulpjs',
label: 'Twitter',
}
]
Expand Down Expand Up @@ -164,6 +192,15 @@ module.exports = {
flexBasis: '80px',
},
},
{
href: 'https://www.decojent.com',
src: 'sponsor-logos/decojent.svg',
alt: 'Decojent logo',
title: 'Decojent',
style: {
flexBasis: '100px'
}
}
]
},
stylesheets: [
Expand Down
Loading