projex
Version:
A command line to manage the workflow
46 lines (35 loc) • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GIT_IGNORE_TEMPLATE_CODE = exports.CHANGELOG_TEMPLATE_CODE = exports.README_TEMPLATE_CODE = void 0;
exports.README_TEMPLATE_CODE = `# My App
> My app description
[](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE: END -->
## Configuration
Example of configuration content here
## Table of Contents
- [Example](docs/Example.md)`;
exports.CHANGELOG_TEMPLATE_CODE = `# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
`;
exports.GIT_IGNORE_TEMPLATE_CODE = `node_modules/
dist/
build/
.cache/
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
coverage/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnp/
.pnp.js
*.pnp.js`;