Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 6 additions & 38 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,8 @@
node_modules/
yarn-error.log
yarn.lock
package-lock.json
npm-debug.log

.DS_Store
dist/
src/
coverage/
.nyc_output/
*.log
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
.pnp
.pnp.js
.pnp.cjs
*.pnp.js
*.pnp.cjs
.cache/

build/
temp/
*.gitignore
.vscode

# cache files for sublime text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# sftp configuration file
sftp-config.json

# Package control specific files
Package Control.last-run
Package Control.ca-list
Package Control.ca-bundle
Package Control.system-ca-bundle
Package Control.cache/
Package Control.ca-certs/
bh_unicode_properties.cache
.DS_Store
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ This generator creates a beginner-friendly starting point while still exposing r
## Requirements

- Node.js 18+ (Node.js 20 recommended)
- npm (or Yarn)
- npm (recommended)

The repository also declares supported runtime versions in `package.json` under `engines`.

## Quick start

Expand All @@ -62,6 +64,7 @@ Quality checks:
```bash
npm run typecheck
npm test
npm run lint
```

Environment toggles (optional):
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
"test": "node --test -r ts-node/register _gulp/**/*.test.ts",
"lint": "eslint \"_gulp/**/*.ts\""
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"author": "Raniro Coelho",
"license": "MIT",
"devDependencies": {
Expand Down Expand Up @@ -60,8 +64,5 @@
"typescript": "^5.1.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"immutable": "^4.3.7"
}
}
Loading