feat: Hugo rebuild folder structure
- Update package.json to latest versions - Add scripts/copy-assts.js script to build assets and static folders with required files.
This commit is contained in:
112
.gitignore
vendored
112
.gitignore
vendored
@ -1,9 +1,105 @@
|
||||
# hidden files
|
||||
.*
|
||||
!.git*
|
||||
!.editorconfig
|
||||
!.prettierignore
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
|
||||
# NPM
|
||||
node_modules
|
||||
package-lock.json
|
||||
# Debug logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul/nyc
|
||||
coverage
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory
|
||||
bower_components
|
||||
|
||||
# Compiled binary addons
|
||||
build/Release
|
||||
|
||||
# Next.js build output
|
||||
.next/
|
||||
out/
|
||||
|
||||
# Nuxt.js build output
|
||||
.nuxt/
|
||||
dist/
|
||||
|
||||
# Vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# Docusaurus build output
|
||||
.build/
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
public
|
||||
|
||||
# Storybook build outputs
|
||||
.out/
|
||||
storybook-static/
|
||||
|
||||
# Angular build output
|
||||
angular-out/
|
||||
|
||||
# Svelte build output
|
||||
.svelte-kit/
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Parcel cache
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# TypeScript build outputs
|
||||
*.tsbuildinfo
|
||||
*.tscache
|
||||
tsconfig.tsbuildinfo
|
||||
|
||||
# VSCode settings
|
||||
.vscode/
|
||||
|
||||
# JetBrains IDEs
|
||||
.idea/
|
||||
|
||||
# OS-specific files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# dotenv environment files
|
||||
.env
|
||||
.env.test
|
||||
.env.production
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
|
Reference in New Issue
Block a user