@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
38 lines (29 loc) • 438 B
JavaScript
export const getGitIgnore = () => {
return `# Graph CLI generated artifacts
build/
generated/
# Dependency directories
node_modules/
jspm_packages/
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# dotenv environment variables file
.env
# Testing
coverage
coverage.json
# Typechain
typechain
typechain-types
# Hardhat files
cache
`;
};