Skip to content

Commit

Permalink
chore: nodejs v12 only
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Nodejs v10 support
  • Loading branch information
3cp committed Apr 2, 2022
1 parent b30198a commit 16a052b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['10', '12', '14']
node_version: ['12', '14', '16']
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage
/__play.js
/tmp
/dist
.parcel-cache
24 changes: 16 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
"name": "makes",
"version": "2.1.5",
"description": "A tool to scaffold new projects, simple enough that you would want to define your own skeletons (aka generators).",
"source": "lib/index.js",
"main": "dist/index.js",
"targets": {
"main": {
"includeNodeModules": true,
"sourceMap": false,
"optimize": true
}
},
"files": [
"dist",
"bin"
Expand All @@ -21,7 +29,7 @@
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run lint",
"build": "ncc build lib/index.js -m",
"build": "parcel build",
"prepare": "npm run build"
},
"repository": {
Expand All @@ -40,21 +48,21 @@
},
"homepage": "https://github.com/makesjs/makes#readme",
"devDependencies": {
"@babel/code-frame": "^7.12.13",
"@vercel/ncc": "^0.28.3",
"@babel/code-frame": "^7.16.7",
"ansi-colors": "^4.1.1",
"ava": "^3.15.0",
"cross-spawn": "^7.0.3",
"eslint": "^7.25.0",
"eslint": "^8.12.0",
"gunzip-maybe": "^1.4.2",
"hosted-git-info": "^4.0.2",
"hosted-git-info": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"isutf8": "^3.1.1",
"isutf8": "^4.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.mergewith": "^4.6.2",
"mock-fs": "^4.14.0",
"mri": "^1.1.6",
"mock-fs": "^5.1.2",
"mri": "^1.2.0",
"nyc": "^15.1.0",
"parcel": "^2.4.1",
"sisteransi": "^1.0.5",
"standard-changelog": "^2.0.27",
"tar-fs": "^2.1.1",
Expand Down

0 comments on commit 16a052b

Please sign in to comment.