Skip to content

Commit

Permalink
chore: publish 0.1.0 πŸŽ‰
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Jun 24, 2022
1 parent 25ba092 commit 195b1bc
Show file tree
Hide file tree
Showing 9 changed files with 117 additions and 75 deletions.
41 changes: 41 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Changelog

## 0.1.0 - [2022-06-24]

Initial release of the `scaffold` project. The project is currently passing tests on macos and linux only.

This project might not work on Windows, but if you would like to add support please open an issue and or pull request πŸ˜„.

### ✨ Features

- Scaffold a project with the `scaffold` command.
- Automatically cache downloaded files.
- `--force` option to overwrite the directory if it already exists.
- Experimental support `scaffold.config.ts` files in templates to customize the scaffold.
- Support for granular permissions in `scaffold.config.ts`.

```bash
Usage: scaffold <repo> [folder]
Version: 0.0.0

Description:

πŸ—οΈ Scaffold a new project from any GitHub, GitLab or BitBucket git repository.

Options:

-h, --help - Show this help.
-V, --version - Show the version number for this program.
-c, --cache [cache] - Set the cache directory relative to the current directory.
--no-cache - Disable the cache.
-d, --debug - Enable debug logging (shorthand for --log-level=debug
-f, --force - Overwrite files even if they already exist.
-l, --log-level [level] - Set the log level. (Values: "debug", "info", "warn", "error", "fatal")
-s, --silent - Disable all logging.
--no-template - Disable loading the template.config.ts file.
-n, --name [name] - Set the name to be used in the template
--description [name] - Set the description to be used in the template
-y, --no-interactive - Disable the interactive prompt.
--use-temp-source - Copy local files to a temporary directory before scaffolding. This might break
local imports.
```
17 changes: 9 additions & 8 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"tasks": {
"check": "deno task fix && deno task lint && deno task test && CI=true deno task lock && deno task run -h &> /dev/null",
"fix": "dprint fmt",
"install": "deno install --unstable -Af -n scaffold ./cli.ts",
"run": "deno run --unstable -A ./cli.ts",
"lock": "deno run --allow-run=deno --allow-env=CI --allow-read scripts/cache.ts --reload",
"lock:update": "deno run --allow-run=deno --allow-read scripts/cache.ts",
"lint": "deno lint",
"fix": "dprint fmt",
"typecheck": "deno --unstable check ./cli.ts ./mod.ts",
"test": "deno test --unstable --allow-read --allow-write --allow-env --allow-run='deno'",
"lock:update": "deno run --allow-run=deno --allow-read scripts/cache.ts",
"lock": "deno run --allow-run=deno --allow-env=CI --allow-read scripts/cache.ts --reload",
"run": "deno run --unstable -A ./cli.ts",
"test:coverage": "deno test --coverage=coverage --unstable --allow-read --allow-write --allow-env --allow-run='deno'",
"check": "deno task fix && deno task lint && deno task test && CI=true deno task lock && deno task run -h &> /dev/null",
"test:watch": "deno test --unstable --allow-read --allow-write --allow-env --allow-run='deno' --watch"
"test:snapshot": "deno test --unstable --allow-read --allow-write --allow-env --allow-run='deno' -- -u",
"test:watch": "deno test --unstable --allow-read --allow-write --allow-env --allow-run='deno' --watch",
"test": "deno test --unstable --allow-read --allow-write --allow-env --allow-run='deno'",
"typecheck": "deno --unstable check ./cli.ts ./mod.ts"
},
"compilerOptions": {
"noUncheckedIndexedAccess": true
Expand Down
100 changes: 50 additions & 50 deletions lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,56 +90,56 @@
"https://deno.land/[email protected]/path/posix.ts": "293cdaec3ecccec0a9cc2b534302dfe308adb6f10861fa183275d6695faace44",
"https://deno.land/[email protected]/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
"https://deno.land/[email protected]/path/win32.ts": "31811536855e19ba37a999cd8d1b62078235548d67902ece4aa6b814596dd757",
"https://deno.land/std@0.144.0/_deno_unstable.ts": "be3276fd42cffb49f51b705c4b0aa8656aaf2a34be22d769455c8e50ea38e51a",
"https://deno.land/std@0.144.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74",
"https://deno.land/std@0.144.0/_util/os.ts": "3b4c6e27febd119d36a416d7a97bd3b0251b77c88942c8f16ee5953ea13e2e49",
"https://deno.land/std@0.144.0/archive/tar.ts": "ea420312bb9105d5c960133563d0eacf0f2f86e097e847cd84c2172c687a1125",
"https://deno.land/std@0.144.0/bytes/bytes_list.ts": "aba5e2369e77d426b10af1de0dcc4531acecec27f9b9056f4f7bfbf8ac147ab4",
"https://deno.land/std@0.144.0/bytes/equals.ts": "3c3558c3ae85526f84510aa2b48ab2ad7bdd899e2e0f5b7a8ffc85acb3a6043a",
"https://deno.land/std@0.144.0/bytes/mod.ts": "763f97d33051cc3f28af1a688dfe2830841192a9fea0cbaa55f927b49d49d0bf",
"https://deno.land/std@0.144.0/flags/mod.ts": "54b3ed0939b073086c956adccb63a675b70596379d387bac96b4b6e022a99a10",
"https://deno.land/std@0.144.0/fmt/colors.ts": "6f9340b7fb8cc25a993a99e5efc56fe81bb5af284ff412129dd06df06f53c0b4",
"https://deno.land/std@0.144.0/fs/_util.ts": "0fb24eb4bfebc2c194fb1afdb42b9c3dda12e368f43e8f2321f84fc77d42cb0f",
"https://deno.land/std@0.144.0/fs/copy.ts": "9248d1492599957af8c693ceb10a432b09f0b0b61c60a4d6aff29b0c7d3a17b3",
"https://deno.land/std@0.144.0/fs/empty_dir.ts": "7274d87160de34cbed0531e284df383045cf43543bbeadeb97feac598bd8f3c5",
"https://deno.land/std@0.144.0/fs/ensure_dir.ts": "9dc109c27df4098b9fc12d949612ae5c9c7169507660dcf9ad90631833209d9d",
"https://deno.land/std@0.144.0/fs/ensure_file.ts": "7d353e64fee3d4d1e7c6b6726a2a5e987ba402c15fb49566309042887349c545",
"https://deno.land/std@0.144.0/fs/ensure_link.ts": "489e23df9fe3e6636048b5830ddf0f111eb29621eb85719255ad9bd645f3471b",
"https://deno.land/std@0.144.0/fs/ensure_symlink.ts": "88dc83de1bc90ed883dd458c2d2eae3d5834a4617d12925734836e1f0803b274",
"https://deno.land/std@0.144.0/fs/eol.ts": "b92f0b88036de507e7e6fbedbe8f666835ea9dcbf5ac85917fa1fadc919f83a5",
"https://deno.land/std@0.144.0/fs/exists.ts": "cb734d872f8554ea40b8bff77ad33d4143c1187eac621a55bf37781a43c56f6d",
"https://deno.land/std@0.144.0/fs/expand_glob.ts": "0c10130d67c9b02164b03df8e43c6d6defbf8e395cb69d09e84a8586e6d72ac3",
"https://deno.land/std@0.144.0/fs/mod.ts": "4dc052c461c171abb5c25f6e0f218ab838a716230930b534ba351745864b7d6d",
"https://deno.land/std@0.144.0/fs/move.ts": "0573cedcf583f09a9494f2dfccbf67de68a93629942d6b5e6e74a9e45d4e8a2e",
"https://deno.land/std@0.144.0/fs/walk.ts": "117403ccd21fd322febe56ba06053b1ad5064c802170f19b1ea43214088fe95f",
"https://deno.land/std@0.144.0/io/buffer.ts": "bd0c4bf53db4b4be916ca5963e454bddfd3fcd45039041ea161dbf826817822b",
"https://deno.land/std@0.144.0/io/files.ts": "d199ef64e918a256320ba8d8d44ae91de87c9077df8f8d6cca013f1b9fbbe285",
"https://deno.land/std@0.144.0/io/mod.ts": "83426d8049476fa080a120115a791152b34afbaf35848271481bb70215aa489f",
"https://deno.land/std@0.144.0/io/readers.ts": "45847ad404afd2f605eae1cff193f223462bc55eeb9ae313c2f3db28aada0fd6",
"https://deno.land/std@0.144.0/io/streams.ts": "988a19155b52161f0035ce539e2f1d12edbc4c389fa7633da832a64e6edbe1a0",
"https://deno.land/std@0.144.0/io/types.d.ts": "0cae3a62da7a37043661746c65c021058bae020b54e50c0e774916e5d4baee43",
"https://deno.land/std@0.144.0/io/util.ts": "078da53bba767bec0d45f7da44411f6dbf269e51ef7fcfea5e3714e04681c674",
"https://deno.land/std@0.144.0/io/writers.ts": "3898e3babc1cf4f2bafd9f0fcf1324c25c7ec3675ae43e85b8cba9db28c1e468",
"https://deno.land/std@0.144.0/log/handlers.ts": "b88c24df61eaeee8581dbef3622f21aebfd061cd2fda49affc1711c0e54d57da",
"https://deno.land/std@0.144.0/log/levels.ts": "82c965b90f763b5313e7595d4ba78d5095a13646d18430ebaf547526131604d1",
"https://deno.land/std@0.144.0/log/logger.ts": "4d25581bc02dfbe3ad7e8bb480e1f221793a85be5e056185a0cea134f7a7fdf4",
"https://deno.land/std@0.144.0/path/_constants.ts": "df1db3ffa6dd6d1252cc9617e5d72165cd2483df90e93833e13580687b6083c3",
"https://deno.land/std@0.144.0/path/_interface.ts": "ee3b431a336b80cf445441109d089b70d87d5e248f4f90ff906820889ecf8d09",
"https://deno.land/std@0.144.0/path/_util.ts": "c1e9686d0164e29f7d880b2158971d805b6e0efc3110d0b3e24e4b8af2190d2b",
"https://deno.land/std@0.144.0/path/common.ts": "bee563630abd2d97f99d83c96c2fa0cca7cee103e8cb4e7699ec4d5db7bd2633",
"https://deno.land/std@0.144.0/path/glob.ts": "cb5255638de1048973c3e69e420c77dc04f75755524cb3b2e160fe9277d939ee",
"https://deno.land/std@0.144.0/path/mod.ts": "4945b430b759b0b3d98f2a278542cbcf95e0ad2bd8eaaed3c67322b306b2b346",
"https://deno.land/std@0.144.0/path/posix.ts": "293cdaec3ecccec0a9cc2b534302dfe308adb6f10861fa183275d6695faace44",
"https://deno.land/std@0.144.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
"https://deno.land/std@0.144.0/path/win32.ts": "31811536855e19ba37a999cd8d1b62078235548d67902ece4aa6b814596dd757",
"https://deno.land/std@0.144.0/streams/conversion.ts": "fc3db02026183da795fa32ac7549868e9f19c75ba029d4b4c3739af62b48517a",
"https://deno.land/std@0.144.0/testing/_diff.ts": "029a00560b0d534bc0046f1bce4bd36b3b41ada3f2a3178c85686eb2ff5f1413",
"https://deno.land/std@0.144.0/testing/_format.ts": "0d8dc79eab15b67cdc532826213bbe05bccfd276ca473a50a3fc7bbfb7260642",
"https://deno.land/std@0.144.0/testing/_test_suite.ts": "54390204bbef50d8844d95fbd286cea39a6fe7337b3f1f8e10e7a8167117f81c",
"https://deno.land/std@0.144.0/testing/asserts.ts": "319df43e1e6bba2520508f6090a21a9a640cbe2754d255aee17cd1dfa78c2ff6",
"https://deno.land/std@0.144.0/testing/bdd.ts": "182bb823e09bd75b76063ecf50722870101b7cfadf97a09fa29127279dc21128",
"https://deno.land/std@0.144.0/testing/mock.ts": "d9630b551fe59a81b3c214c1a6ccb67819b6e34fc20e3424a659528fe1f572c1",
"https://deno.land/std@0.144.0/testing/snapshot.ts": "11303bb714d8eb17c0a58e585290a61d289f09a67d8da66595ef9ea6141891a8",
"https://deno.land/std@0.145.0/_deno_unstable.ts": "be3276fd42cffb49f51b705c4b0aa8656aaf2a34be22d769455c8e50ea38e51a",
"https://deno.land/std@0.145.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74",
"https://deno.land/std@0.145.0/_util/os.ts": "3b4c6e27febd119d36a416d7a97bd3b0251b77c88942c8f16ee5953ea13e2e49",
"https://deno.land/std@0.145.0/archive/tar.ts": "ea420312bb9105d5c960133563d0eacf0f2f86e097e847cd84c2172c687a1125",
"https://deno.land/std@0.145.0/bytes/bytes_list.ts": "aba5e2369e77d426b10af1de0dcc4531acecec27f9b9056f4f7bfbf8ac147ab4",
"https://deno.land/std@0.145.0/bytes/equals.ts": "3c3558c3ae85526f84510aa2b48ab2ad7bdd899e2e0f5b7a8ffc85acb3a6043a",
"https://deno.land/std@0.145.0/bytes/mod.ts": "763f97d33051cc3f28af1a688dfe2830841192a9fea0cbaa55f927b49d49d0bf",
"https://deno.land/std@0.145.0/flags/mod.ts": "387fd528c1c518eec8eb58ae886b15d3dabab27985e55e886c10ae37a540c6ee",
"https://deno.land/std@0.145.0/fmt/colors.ts": "6f9340b7fb8cc25a993a99e5efc56fe81bb5af284ff412129dd06df06f53c0b4",
"https://deno.land/std@0.145.0/fs/_util.ts": "2cf50bfb1081c2d5f2efec10ac19abbc2baf478e51cd1b057d0da2f30585b6ba",
"https://deno.land/std@0.145.0/fs/copy.ts": "9248d1492599957af8c693ceb10a432b09f0b0b61c60a4d6aff29b0c7d3a17b3",
"https://deno.land/std@0.145.0/fs/empty_dir.ts": "7274d87160de34cbed0531e284df383045cf43543bbeadeb97feac598bd8f3c5",
"https://deno.land/std@0.145.0/fs/ensure_dir.ts": "9dc109c27df4098b9fc12d949612ae5c9c7169507660dcf9ad90631833209d9d",
"https://deno.land/std@0.145.0/fs/ensure_file.ts": "7d353e64fee3d4d1e7c6b6726a2a5e987ba402c15fb49566309042887349c545",
"https://deno.land/std@0.145.0/fs/ensure_link.ts": "489e23df9fe3e6636048b5830ddf0f111eb29621eb85719255ad9bd645f3471b",
"https://deno.land/std@0.145.0/fs/ensure_symlink.ts": "88dc83de1bc90ed883dd458c2d2eae3d5834a4617d12925734836e1f0803b274",
"https://deno.land/std@0.145.0/fs/eol.ts": "b92f0b88036de507e7e6fbedbe8f666835ea9dcbf5ac85917fa1fadc919f83a5",
"https://deno.land/std@0.145.0/fs/exists.ts": "cb734d872f8554ea40b8bff77ad33d4143c1187eac621a55bf37781a43c56f6d",
"https://deno.land/std@0.145.0/fs/expand_glob.ts": "143400698822117018c3646f4b7d2d418bc5cdede1ec837a8c70013b7711c761",
"https://deno.land/std@0.145.0/fs/mod.ts": "4dc052c461c171abb5c25f6e0f218ab838a716230930b534ba351745864b7d6d",
"https://deno.land/std@0.145.0/fs/move.ts": "0573cedcf583f09a9494f2dfccbf67de68a93629942d6b5e6e74a9e45d4e8a2e",
"https://deno.land/std@0.145.0/fs/walk.ts": "6ce8d87fbaeda23383e979599ad27f3f94b3e5ff0c0cd976b5fc5c2aa0df7d92",
"https://deno.land/std@0.145.0/io/buffer.ts": "bd0c4bf53db4b4be916ca5963e454bddfd3fcd45039041ea161dbf826817822b",
"https://deno.land/std@0.145.0/io/files.ts": "d199ef64e918a256320ba8d8d44ae91de87c9077df8f8d6cca013f1b9fbbe285",
"https://deno.land/std@0.145.0/io/mod.ts": "83426d8049476fa080a120115a791152b34afbaf35848271481bb70215aa489f",
"https://deno.land/std@0.145.0/io/readers.ts": "45847ad404afd2f605eae1cff193f223462bc55eeb9ae313c2f3db28aada0fd6",
"https://deno.land/std@0.145.0/io/streams.ts": "988a19155b52161f0035ce539e2f1d12edbc4c389fa7633da832a64e6edbe1a0",
"https://deno.land/std@0.145.0/io/types.d.ts": "0cae3a62da7a37043661746c65c021058bae020b54e50c0e774916e5d4baee43",
"https://deno.land/std@0.145.0/io/util.ts": "078da53bba767bec0d45f7da44411f6dbf269e51ef7fcfea5e3714e04681c674",
"https://deno.land/std@0.145.0/io/writers.ts": "3898e3babc1cf4f2bafd9f0fcf1324c25c7ec3675ae43e85b8cba9db28c1e468",
"https://deno.land/std@0.145.0/log/handlers.ts": "b88c24df61eaeee8581dbef3622f21aebfd061cd2fda49affc1711c0e54d57da",
"https://deno.land/std@0.145.0/log/levels.ts": "82c965b90f763b5313e7595d4ba78d5095a13646d18430ebaf547526131604d1",
"https://deno.land/std@0.145.0/log/logger.ts": "4d25581bc02dfbe3ad7e8bb480e1f221793a85be5e056185a0cea134f7a7fdf4",
"https://deno.land/std@0.145.0/path/_constants.ts": "df1db3ffa6dd6d1252cc9617e5d72165cd2483df90e93833e13580687b6083c3",
"https://deno.land/std@0.145.0/path/_interface.ts": "ee3b431a336b80cf445441109d089b70d87d5e248f4f90ff906820889ecf8d09",
"https://deno.land/std@0.145.0/path/_util.ts": "c1e9686d0164e29f7d880b2158971d805b6e0efc3110d0b3e24e4b8af2190d2b",
"https://deno.land/std@0.145.0/path/common.ts": "bee563630abd2d97f99d83c96c2fa0cca7cee103e8cb4e7699ec4d5db7bd2633",
"https://deno.land/std@0.145.0/path/glob.ts": "cb5255638de1048973c3e69e420c77dc04f75755524cb3b2e160fe9277d939ee",
"https://deno.land/std@0.145.0/path/mod.ts": "4945b430b759b0b3d98f2a278542cbcf95e0ad2bd8eaaed3c67322b306b2b346",
"https://deno.land/std@0.145.0/path/posix.ts": "c1f7afe274290ea0b51da07ee205653b2964bd74909a82deb07b69a6cc383aaa",
"https://deno.land/std@0.145.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9",
"https://deno.land/std@0.145.0/path/win32.ts": "bd7549042e37879c68ff2f8576a25950abbfca1d696d41d82c7bca0b7e6f452c",
"https://deno.land/std@0.145.0/streams/conversion.ts": "fc3db02026183da795fa32ac7549868e9f19c75ba029d4b4c3739af62b48517a",
"https://deno.land/std@0.145.0/testing/_diff.ts": "029a00560b0d534bc0046f1bce4bd36b3b41ada3f2a3178c85686eb2ff5f1413",
"https://deno.land/std@0.145.0/testing/_format.ts": "0d8dc79eab15b67cdc532826213bbe05bccfd276ca473a50a3fc7bbfb7260642",
"https://deno.land/std@0.145.0/testing/_test_suite.ts": "ad453767aeb8c300878a6b7920e20370f4ce92a7b6c8e8a5d1ac2b7c14a09acb",
"https://deno.land/std@0.145.0/testing/asserts.ts": "319df43e1e6bba2520508f6090a21a9a640cbe2754d255aee17cd1dfa78c2ff6",
"https://deno.land/std@0.145.0/testing/bdd.ts": "182bb823e09bd75b76063ecf50722870101b7cfadf97a09fa29127279dc21128",
"https://deno.land/std@0.145.0/testing/mock.ts": "d9630b551fe59a81b3c214c1a6ccb67819b6e34fc20e3424a659528fe1f572c1",
"https://deno.land/std@0.145.0/testing/snapshot.ts": "11303bb714d8eb17c0a58e585290a61d289f09a67d8da66595ef9ea6141891a8",
"https://deno.land/[email protected]/_util/assert.ts": "2f868145a042a11d5ad0a3c748dcf580add8a0dbc0e876eaa0026303a5488f58",
"https://deno.land/[email protected]/_util/os.ts": "e282950a0eaa96760c0cf11e7463e66babd15ec9157d4c9ed49cc0925686f6a7",
"https://deno.land/[email protected]/fmt/colors.ts": "db22b314a2ae9430ae7460ce005e0a7130e23ae1c999157e3bb77cf55800f7e4",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* The version of the CLI.
*/
export const VERSION = /* ={version} */ "0.0.0" /* {/version} */;
export const VERSION = /* ={version} */ "0.1.0" /* {/version} */;

export const SUPPORTED_EXTENSIONS = [
".ts",
Expand Down
2 changes: 1 addition & 1 deletion src/deps/fs.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.144.0/fs/mod.ts";
export * from "https://deno.land/std@0.145.0/fs/mod.ts";
2 changes: 1 addition & 1 deletion src/deps/path.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { default as normalizePath } from "https://cdn.skypack.dev/[email protected]?dts";
export * as path from "https://deno.land/std@0.144.0/path/mod.ts";
export * as path from "https://deno.land/std@0.145.0/path/mod.ts";
export * from "https://esm.sh/[email protected]?type=deno";
18 changes: 9 additions & 9 deletions src/deps/std.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
export { Tar, Untar } from "https://deno.land/std@0.144.0/archive/tar.ts";
export { parse } from "https://deno.land/std@0.144.0/flags/mod.ts";
export { readLines } from "https://deno.land/std@0.144.0/io/mod.ts";
export { Tar, Untar } from "https://deno.land/std@0.145.0/archive/tar.ts";
export { parse } from "https://deno.land/std@0.145.0/flags/mod.ts";
export { readLines } from "https://deno.land/std@0.145.0/io/mod.ts";
export {
BaseHandler,
type HandlerOptions,
} from "https://deno.land/std@0.144.0/log/handlers.ts";
} from "https://deno.land/std@0.145.0/log/handlers.ts";
export {
type LevelName,
LogLevels,
} from "https://deno.land/std@0.144.0/log/levels.ts";
export { Logger, LogRecord } from "https://deno.land/std@0.144.0/log/logger.ts";
} from "https://deno.land/std@0.145.0/log/levels.ts";
export { Logger, LogRecord } from "https://deno.land/std@0.145.0/log/logger.ts";
export {
globToRegExp,
isGlob,
} from "https://deno.land/std@0.144.0/path/glob.ts";
} from "https://deno.land/std@0.145.0/path/glob.ts";
export {
copy,
readableStreamFromIterable,
readableStreamFromReader,
readerFromStreamReader,
} from "https://deno.land/std@0.144.0/streams/conversion.ts";
} from "https://deno.land/std@0.145.0/streams/conversion.ts";
export {
assert,
equal,
} from "https://deno.land/std@0.144.0/testing/asserts.ts";
} from "https://deno.land/std@0.145.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion tests/__snapshots__/scaffold_test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const snapshot = {};
snapshot[`global > scaffold > can display help 1`] = `
'
\\x1b[1mUsage:\\x1b[22m \\x1b[35mscaffold \\x1b[33m<\\x1b[35m\\x1b[35mrepo\\x1b[35m\\x1b[33m>\\x1b[35m \\x1b[33m[\\x1b[35m\\x1b[35mfolder\\x1b[35m\\x1b[33m]\\x1b[35m\\x1b[39m
\\x1b[1mVersion:\\x1b[22m \\x1b[33m0.0.0\\x1b[39m
\\x1b[1mVersion:\\x1b[22m \\x1b[33m0.1.0\\x1b[39m
\\x1b[1mDescription:\\x1b[22m
Expand Down
8 changes: 4 additions & 4 deletions tests/deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from "https://deno.land/std@0.144.0/testing/asserts.ts";
export * from "https://deno.land/std@0.144.0/testing/bdd.ts";
export * from "https://deno.land/std@0.144.0/testing/mock.ts";
export * from "https://deno.land/std@0.144.0/testing/snapshot.ts";
export * from "https://deno.land/std@0.145.0/testing/asserts.ts";
export * from "https://deno.land/std@0.145.0/testing/bdd.ts";
export * from "https://deno.land/std@0.145.0/testing/mock.ts";
export * from "https://deno.land/std@0.145.0/testing/snapshot.ts";

0 comments on commit 195b1bc

Please sign in to comment.