23 lines
672 B
JavaScript
23 lines
672 B
JavaScript
module.exports = {
|
|
// Project metadata
|
|
name: `30 seconds starter`,
|
|
description: `Kick off your next, great 30 seconds project with this starter.`,
|
|
shortName: `30s`,
|
|
repositoryUrl: `https://github.com/30-seconds/30-seconds-starter`,
|
|
// Path information
|
|
snippetPath: `snippets`,
|
|
snippetArchivePath: `snippets_archive`,
|
|
glossaryPath: `glossary`,
|
|
snippetDataPath: `snippet_data`,
|
|
assetPath: `assets`,
|
|
pagePath: `src/docs/pages`,
|
|
staticPartsPath: `src/static-parts`,
|
|
distPath: `dist`,
|
|
// General information
|
|
language: `js`,
|
|
// Module information
|
|
moduleName: `_30s`,
|
|
rollupInputFile: `imports.temp.js`,
|
|
testModuleFile: `test/_30s.js`,
|
|
};
|