Comparing version 2.11.1 to 2.11.2
#!/usr/bin/env node | ||
require('./dist/bin.js'); | ||
require('./src/bin.js'); |
{ | ||
"name": "tiged", | ||
"version": "2.11.1", | ||
"version": "2.11.2", | ||
"engines": { | ||
@@ -8,3 +8,3 @@ "node": ">=8.0.0" | ||
"description": "Straightforward project scaffolding", | ||
"main": "dist/index.js", | ||
"main": "src/index.js", | ||
"bin": { | ||
@@ -15,7 +15,3 @@ "degit": "bin.js" | ||
"lint": "eslint --color --ignore-path .gitignore .", | ||
"dev": "npm run build -- --watch", | ||
"build": "rimraf dist && rollup -c", | ||
"test": "mocha", | ||
"pretest": "npm run build", | ||
"prepack": "npm run build" | ||
"test": "mocha" | ||
}, | ||
@@ -36,9 +32,8 @@ "repository": { | ||
"enquirer": "2.3.6", | ||
"fs-extra": "10.1.0", | ||
"fuzzysearch": "1.0.3", | ||
"home-or-tmp": "3.0.0", | ||
"https-proxy-agent": "5.0.0", | ||
"mri": "1.1.6", | ||
"rimraf": "3.0.2", | ||
"sander": "0.6.0", | ||
"tar": "6.1.0", | ||
"tar": "^6.1.11", | ||
"tiny-glob": "0.2.8" | ||
@@ -55,3 +50,3 @@ }, | ||
"lint-staged": "10.5.4", | ||
"mocha": "8.3.0", | ||
"mocha": "^10.0.0", | ||
"prettier": "2.2.1", | ||
@@ -62,3 +57,3 @@ "rollup": "2.38.5", | ||
}, | ||
"files": ["dist", "help.md"], | ||
"files": ["src", "help.md"], | ||
"husky": { | ||
@@ -65,0 +60,0 @@ "hooks": { |
@@ -11,26 +11,30 @@ > This is a community driven fork of [degit](https://github.com/Rich-Harris/degit) because it isn't being maintained. | ||
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com) | ||
--- | ||
### Why fork? | ||
* `degit` was last released over a year ago Feb 5, 2020, and Rich is not answering pull requests or issues there. He is probably very busy with Svelte and we love him for that.*Rich has now (April 1, 2021) merged the main branch fix. Regardless currently this fork is still more fully featured and will continue to be developed.* | ||
* We want pull requests merged. E.g. like automatically working with `main` or other default branch (has been merged!). | ||
* Update dependencies. | ||
* Hopefully get multiple active maintainers. | ||
- `degit` was last released over a year ago Feb 5, 2020, and Rich is not answering pull requests or issues there. He is probably very busy with Svelte and we love him for that._Rich has now (April 1, 2021) merged the main branch fix. Regardless currently this fork is still more fully featured and will continue to be developed._ | ||
- We want pull requests merged. E.g. like automatically working with `main` or other default branch (has been merged!). | ||
- Update dependencies. | ||
- Hopefully get multiple active maintainers. | ||
### What has been fixed? | ||
* Works with `main` or any default branch automatically. [#243](https://github.com/Rich-Harris/degit/pull/243) | ||
* `--mode=git` with private repos now work on Windows [#191](https://github.com/Rich-Harris/degit/pull/191). | ||
* `degit --help` now works. Previously it would crash instead of displaying help.md contents. [#179](https://github.com/Rich-Harris/degit/pull/179) | ||
* `--mode=git` is now faster. [#171](https://github.com/Rich-Harris/degit/pull/171) | ||
* Github Actions CI tests working. Added Github Actions badge and removed old CI badges. | ||
* Added support for privately hosted git repositories ([#10](https://github.com/tiged/tiged/pull/10)) | ||
* GitLab works again. [#18](https://github.com/tiged/tiged/pull/18) | ||
* Subdir works in `--mode=git` [#19](https://github.com/tiged/tiged/pull/19) | ||
* Subgroups work in GitLab [#24](https://github.com/tiged/tiged/pull/24) | ||
**It might be time to move on.** | ||
--- | ||
- Works with `main` or any default branch automatically. [#243](https://github.com/Rich-Harris/degit/pull/243) | ||
- `--mode=git` with private repos now work on Windows [#191](https://github.com/Rich-Harris/degit/pull/191). | ||
- `degit --help` now works. Previously it would crash instead of displaying help.md contents. [#179](https://github.com/Rich-Harris/degit/pull/179) | ||
- `--mode=git` is now faster. [#171](https://github.com/Rich-Harris/degit/pull/171) | ||
- Github Actions CI tests working. Added Github Actions badge and removed old CI badges. | ||
- Added support for privately hosted git repositories ([#10](https://github.com/tiged/tiged/pull/10)) | ||
- GitLab works again. [#18](https://github.com/tiged/tiged/pull/18) | ||
- Subdir works in `--mode=git` [#19](https://github.com/tiged/tiged/pull/19) | ||
- Subgroups work in GitLab [#24](https://github.com/tiged/tiged/pull/24) | ||
- Hashes work with git mode [#34](https://github.com/tiged/tiged/pull/34) | ||
- Using full async + cjs (no build needed) [#41](https://github.com/tiged/tiged/pull/41) | ||
#### It might be time to move on. | ||
**degit** makes copies of git repositories. When you run `degit some-user/some-repo`, it will find the latest commit on https://github.com/some-user/some-repo and download the associated tar file to `~/.degit/some-user/some-repo/commithash.tar.gz` if it doesn't already exist locally. (This is much quicker than using `git clone`, because you're not downloading the entire git history.) | ||
_Requires Node 8 or above, because `async` and `await` are the cat's pyjamas_ | ||
## Installation | ||
@@ -154,3 +158,3 @@ | ||
force: true, | ||
verbose: true, | ||
verbose: true | ||
}); | ||
@@ -157,0 +161,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
9
209
7
28868
8
678
+ Addedfs-extra@10.1.0
+ Addedfs-extra@10.1.0(transitive)
+ Addedjsonfile@6.1.0(transitive)
+ Addedminipass@5.0.0(transitive)
+ Addedtar@6.2.1(transitive)
+ Addeduniversalify@2.0.1(transitive)
- Removedhome-or-tmp@3.0.0
- Removedsander@0.6.0
- Removedhome-or-tmp@3.0.0(transitive)
- Removedminimist@1.2.8(transitive)
- Removedmkdirp@0.5.6(transitive)
- Removedrimraf@2.7.1(transitive)
- Removedsander@0.6.0(transitive)
- Removedtar@6.1.0(transitive)
Updatedtar@^6.1.11