mirror of
https://github.com/veggiemonk/awesome-docker.git
synced 2024-12-21 21:55:22 -05:00
Use netlify plugins
This commit is contained in:
parent
b82bac6bcf
commit
d98c56bc80
33
.eslintrc.js
33
.eslintrc.js
@ -1,33 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
env: {
|
|
||||||
browser: true,
|
|
||||||
node: true,
|
|
||||||
},
|
|
||||||
extends: [
|
|
||||||
'airbnb-base',
|
|
||||||
'plugin:import/errors',
|
|
||||||
'plugin:import/warnings',
|
|
||||||
'prettier',
|
|
||||||
'eslint:recommended',
|
|
||||||
],
|
|
||||||
plugins: ['import', 'prettier'],
|
|
||||||
rules: {
|
|
||||||
camelcase: 0,
|
|
||||||
'import/order': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
groups: ['builtin', 'external', 'parent', 'sibling', 'index'],
|
|
||||||
'newlines-between': 'never',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'no-console': 0,
|
|
||||||
'prefer-template': 2,
|
|
||||||
'prettier/prettier': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
singleQuote: true,
|
|
||||||
trailingComma: 'all',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"bracketSpacing": true,
|
|
||||||
"tabWidth": 4,
|
|
||||||
"semi": true,
|
|
||||||
"trailingComma": "all",
|
|
||||||
"singleQuote": true
|
|
||||||
}
|
|
@ -1,2 +0,0 @@
|
|||||||
language: node_js
|
|
||||||
cache: npm
|
|
38
build.js
38
build.js
@ -1,8 +1,6 @@
|
|||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const cheerio = require('cheerio');
|
const cheerio = require('cheerio');
|
||||||
const showdown = require('showdown');
|
const showdown = require('showdown');
|
||||||
const Parcel = require('parcel-bundler');
|
|
||||||
const { SitemapStream, streamToPromise } = require('sitemap');
|
|
||||||
|
|
||||||
process.env.NODE_ENV = 'production';
|
process.env.NODE_ENV = 'production';
|
||||||
|
|
||||||
@ -46,44 +44,8 @@ async function processIndex() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const bundle = () => {
|
|
||||||
LOG.debug('---');
|
|
||||||
LOG.debug('📦 Bundling with Parcel.js');
|
|
||||||
LOG.debug('---');
|
|
||||||
|
|
||||||
new Parcel(indexDestination, {
|
|
||||||
name: 'build',
|
|
||||||
publicURL: '/',
|
|
||||||
})
|
|
||||||
.bundle()
|
|
||||||
.then(() => {
|
|
||||||
const smStream = new SitemapStream({
|
|
||||||
hostname: 'https://awesome-docker.netlify.com/',
|
|
||||||
});
|
|
||||||
smStream.write({
|
|
||||||
url: '/',
|
|
||||||
changefreq: 'daily',
|
|
||||||
priority: 0.8,
|
|
||||||
lastmodrealtime: true,
|
|
||||||
lastmodfile: 'dist/index.html',
|
|
||||||
});
|
|
||||||
|
|
||||||
smStream.end();
|
|
||||||
return streamToPromise(smStream);
|
|
||||||
})
|
|
||||||
.then((sm) =>
|
|
||||||
// Creates a sitemap object given the input configuration with URLs
|
|
||||||
fs.outputFile(
|
|
||||||
'dist/sitemap.xml',
|
|
||||||
// sm.createSitemap(sitemapOpts).toString(),
|
|
||||||
sm.toString(),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
await processIndex();
|
await processIndex();
|
||||||
await bundle();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main();
|
main();
|
||||||
|
8283
package-lock.json
generated
8283
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
23
package.json
23
package.json
@ -19,24 +19,11 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/veggiemonk/awesome-docker#readme",
|
"homepage": "https://github.com/veggiemonk/awesome-docker#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cheerio": "1.0.0-rc.3",
|
"cheerio": "1.0.0-rc.10",
|
||||||
"draftlog": "1.0.12",
|
"draftlog": "1.0.13",
|
||||||
"fs-extra": "9.0.1",
|
"fs-extra": "10.0.0",
|
||||||
"node-fetch": "2.6.1",
|
"node-fetch": "3.0.0",
|
||||||
"parcel-bundler": "1.12.4",
|
|
||||||
"rimraf": "3.0.2",
|
"rimraf": "3.0.2",
|
||||||
"showdown": "1.9.1",
|
"showdown": "^1.9.0"
|
||||||
"sitemap": "6.3.2"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"babel-eslint": "10.1.0",
|
|
||||||
"eslint": "7.10.0",
|
|
||||||
"eslint-config-airbnb-base": "14.2.0",
|
|
||||||
"eslint-config-prettier": "6.12.0",
|
|
||||||
"eslint-plugin-import": "2.22.1",
|
|
||||||
"eslint-plugin-jsx-a11y": "6.3.1",
|
|
||||||
"eslint-plugin-prettier": "3.1.4",
|
|
||||||
"minimist": "1.2.5",
|
|
||||||
"prettier": "2.1.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user