1
0
mirror of synced 2025-11-08 04:48:04 +00:00

feat(CLI): v2

This commit is contained in:
Jason Dreyzehner
2018-03-10 14:01:34 -05:00
parent 335a988dd8
commit 260a7d37bb
27 changed files with 3967 additions and 1550 deletions

65
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,65 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug CLI",
"program": "${workspaceFolder}/src/cli/cli.ts",
"outFiles": ["${workspaceFolder}/build/main/**/*.js"],
"skipFiles": [
"<node_internals>/**/*.js",
"${workspaceFolder}/node_modules/**/*.js"
],
"preLaunchTask": "npm: build",
"stopOnEntry": true,
"smartStep": true,
"runtimeArgs": ["--nolazy"],
"env": {
"TYPESCRIPT_STARTER_REPO_URL": "${workspaceFolder}"
},
"console": "externalTerminal"
},
{
/// Usage: set appropriate breakpoints in a *.spec.ts file, then open the
// respective *.spec.js file to run this task. Once a breakpoint is hit,
// the debugger will open the source *.spec.ts file for debugging.
"type": "node",
"request": "launch",
"name": "Debug Compiled Test File",
"program": "${workspaceFolder}/node_modules/ava/profile.js",
"args": [
"${file}"
// TODO: VSCode's launch.json variable substitution
// (https://code.visualstudio.com/docs/editor/variables-reference)
// doesn't quite allow us to go from:
// `./src/path/to/file.ts` to `./build/main/path/to/file.js`
// so the user has to navigate to the compiled file manually. (Close:)
// "${workspaceFolder}/build/main/lib/${fileBasenameNoExtension}.js"
],
"skipFiles": ["<node_internals>/**/*.js"],
// Consider using `npm run watch` or `yarn watch` for faster debugging
// "preLaunchTask": "npm: build",
// "smartStep": true,
"runtimeArgs": ["--nolazy"]
}
// TODO: Simpler test debugging option. Discussion:
// https://github.com/avajs/ava/issues/1505#issuecomment-370654427
// {
// "type": "node",
// "request": "launch",
// "name": "Debug Current Test File",
// "program": "${file}",
// "outFiles": ["${workspaceFolder}/build/main/**/*.js"],
// "skipFiles": ["<node_internals>/**/*.js"],
// // Consider using `npm run watch` or `yarn watch` for faster debugging
// // "preLaunchTask": "npm: build",
// // "stopOnEntry": true,
// // "smartStep": true,
// "runtimeArgs": ["--nolazy"],
// "env": {
// "AVA_DEBUG_MODE": "1"
// }
// }
]
}

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.enabled": true
}

View File

@@ -1 +1,3 @@
# package-name
description

291
README.md
View File

@@ -9,63 +9,88 @@
# typescript-starter
A [typescript](https://www.typescriptlang.org/) starter for building javascript libraries and projects:
### A clean, simple [typescript](https://www.typescriptlang.org/) starter for building javascript libraries and Node.js applications.
* Write **standard, future javascript** with stable es7 features today ([stage 3](https://github.com/tc39/proposals) or [finished](https://github.com/tc39/proposals/blob/master/finished-proposals.md) features)
* [Optionally use typescript](https://basarat.gitbooks.io/typescript/content/docs/why-typescript.html) to improve tooling, linting, and documentation generation
* Export as a [javascript module](http://jsmodules.io/), making your work **fully tree-shakable** for consumers using [es6 imports](https://github.com/rollup/rollup/wiki/pkg.module) (like [Rollup](http://rollupjs.org/) or [Webpack 2](https://webpack.js.org/))
<p align="center">
<img alt="demo of the typescript-starter command-line interface" src="">
</p>
## Start Now
Run one simple command to install and use the interactive project generator. You'll need [Node](https://nodejs.org/) `v8.9` (the current LTS release) or later.
```bash
npx typescript-starter
```
The interactive CLI will help you automatically create and configure your project.
# Features
* Write **standard, future javascript** with stable ESNext features today ([stage 3](https://github.com/tc39/proposals) or [finished](https://github.com/tc39/proposals/blob/master/finished-proposals.md) features)
* [Optionally use typescript](https://medium.freecodecamp.org/its-time-to-give-typescript-another-chance-2caaf7fabe61) to improve tooling, linting, and documentation generation
* Export as a [javascript module](http://jsmodules.io/), making your work **fully tree-shakable** for consumers capable of using [es6 imports](https://github.com/rollup/rollup/wiki/pkg.module) (like [Rollup](http://rollupjs.org/), [Webpack](https://webpack.js.org/), or [Parcel](https://parceljs.org/))
* Export type declarations to improve your downstream development experience
* Backwards compatibility for Node.js-style (CommonJS) imports
* Both [strict](config/tsconfig.strict.json) and [flexible](config/tsconfig.flexible.json) typescript configurations available
* Both strict and flexible [typescript configurations](config/tsconfig.json) available
So we can have nice things:
* Generate API documentation (HTML or JSON) [without a mess of JSDoc tags](https://blog.cloudflare.com/generating-documentation-for-typescript-projects/) to maintain
* Collocated, atomic, concurrent unit tests with [AVA](https://github.com/avajs/ava)
* Source-mapped code coverage reports with [nyc](https://github.com/istanbuljs/nyc)
* Configurable code coverage testing (for continuous integration)
* Automatic linting and formatting using [TSLint](https://github.com/palantir/tslint) and [Prettier](https://prettier.io/)
* Automatically check for known vulnerabilities in your dependencies with [`nsp`](https://github.com/nodesecurity/nsp)
## Get started
## But first, a good editor
Before you start, consider using an [editor with good typescript support](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Editor-Support).
[VS Code](https://code.visualstudio.com/) (below) is a popular option. Editors with typescript support can provide helpful autocomplete, inline documentation, and code refactoring features.
Also consider installing editor extensions for [TSLint](https://github.com/Microsoft/vscode-tslint) and [Prettier](https://github.com/prettier/prettier-vscode). These extensions automatically format your code each time you save, and may quickly become invaluable.
<p align="center">
<img alt="Typescript Editor Support vscode" width="600" src="https://cloud.githubusercontent.com/assets/904007/23042221/ccebd534-f465-11e6-838d-e2449899282c.png">
</p>
To see how this starter can be used as a dependency in other projects, check out the [`examples`](./examples) folder. The example above is from [`examples/node-typescript`](./examples/node-typescript).
## View usage examples
To see how this starter can be used as a dependency in other projects, check out the [`examples`](./examples) folder. The example in the VSCode screenshot above is from [`examples/node-typescript`](./examples/node-typescript).
# Developing with typescript-starter
## Development zen
To start working, run the `watch` task using [`npm`](https://docs.npmjs.com/getting-started/what-is-npm) or [`yarn`](https://yarnpkg.com/).
```bash
npm run watch
```
This starter includes a watch task which makes development faster and more interactive. It's particularly helpful for [TDD](https://en.wikipedia.org/wiki/Test-driven_development)/[BDD](https://en.wikipedia.org/wiki/Behavior-driven_development) workflows.
To start working, [install Yarn](https://yarnpkg.com/en/docs/getting-started) and run:
```
yarn watch
```
which will build and watch the entire project for changes (to both the library source files and test source files). As you develop, you can add tests for new functionality which will initially fail before developing the new functionality. Each time you save, any changes will be rebuilt and retested.
The watch task will build and watch the entire project for changes (to both the library source files and test source files). As you develop, you can add tests for new functionality which will initially fail before developing the new functionality. Each time you save, any changes will be rebuilt and retested.
<p align="center">
<img alt="Typescript and AVA watch task" src="https://cloud.githubusercontent.com/assets/904007/23443884/c625d562-fdff-11e6-8f26-77bf75add240.png">
<img alt="demo of typescript-starter's watch task" src="">
</p>
Since only changed files are rebuilt and retested, this workflow remains fast even for large projects.
## Enable stronger type checking (recommended)
To make getting started easier, the default `tsconfig.json` is using the `config/tsconfig.flexible` configuration. This will allow you to get started without many warnings from Typescript.
To make getting started easier, the default `tsconfig.json` is using a very flexible configuration. This will allow you to get started without many warnings from Typescript.
To enable additional Typescript type checking features (a good idea for mission-critical or large projects), change the `extends` value in `tsconfig.json` to `./config/tsconfig.strict`.
To enable additional Typescript type checking features (a good idea for mission-critical or large projects), review the commented-out lines in your [typescript compiler options](./tsconfig.json).
## View test coverage
To generate and view test coverage, run:
```bash
yarn cov
npm run cov
```
This will create an HTML report of test coverage source-mapped back to Typescript and open it in your default browser.
@@ -76,40 +101,50 @@ This will create an HTML report of test coverage source-mapped back to Types
## Generate your API docs
The src folder is analyzed and documentation is automatically generated using [typedoc](https://github.com/TypeStrong/typedoc).
The src folder is analyzed and documentation is automatically generated using [TypeDoc](https://github.com/TypeStrong/typedoc).
```bash
yarn docs
npm run docs
```
This command generates API documentation for your library in HTML format and opens it in a browser.
Since types are tracked by Typescript, there's no need to indicate types in JSDoc format. For more information, see the [typedoc documentation](http://typedoc.org/guides/doccomments/).
Since types are tracked by Typescript, there's no need to indicate types in JSDoc format. For more information, see the [TypeDoc documentation](http://typedoc.org/guides/doccomments/).
To generate and publish your documentation to [GitHub Pages](https://pages.github.com/) use the following command:
```bash
yarn docs:publish
npm run docs:publish
```
Once published, your documentation should be available at the proper GitHub Pages URL for your repo. See [this repo's GitHub Pages](https://bitjson.github.io/typescript-starter/) for an example.
<p align="center">
<img height="500" alt="typedoc documentation example" src="https://cloud.githubusercontent.com/assets/904007/22909419/085b9e38-f222-11e6-996e-c7a86390478c.png">
<img height="500" alt="TypeDoc documentation example" src="https://cloud.githubusercontent.com/assets/904007/22909419/085b9e38-f222-11e6-996e-c7a86390478c.png">
</p>
For more advanced documentation generation, you can provide your own [typedoc theme](http://typedoc.org/guides/themes/), or [build your own documentation](https://blog.cloudflare.com/generating-documentation-for-typescript-projects/) using the JSON typedoc export:
For more advanced documentation generation, you can provide your own [TypeDoc theme](http://typedoc.org/guides/themes/), or [build your own documentation](https://blog.cloudflare.com/generating-documentation-for-typescript-projects/) using the JSON TypeDoc export:
```bash
yarn docs:json
npm run docs:json
```
## Generate/update changelog & tag release
## Update the changelog, commit, & tag release
This project is tooled for [Conventional Changelog](https://github.com/conventional-changelog/conventional-changelog) to make managing releases easier. See the [standard-version](https://github.com/conventional-changelog/standard-version) documentation for more information on the workflow, or [`CHANGELOG.md`](CHANGELOG.md) for an example.
It's recommended that you install [`commitizen`](https://github.com/commitizen/cz-cli) to make commits to your project.
```bash
npm install -g commitizen
# commit your changes:
git cz
```
This project is tooled for [conventional changelog](https://github.com/conventional-changelog/conventional-changelog) to make managing releases easier. See the [standard-version](https://github.com/conventional-changelog/standard-version) documentation for more information on the workflow, or [`CHANGELOG.md`](CHANGELOG.md) for an example.
```bash
# bump package.json version, update CHANGELOG.md, git tag the release
yarn changelog
npm run changelog
```
## One-step publish preparation script
@@ -118,99 +153,185 @@ Bringing together many of the steps above, this repo includes a one-step release
```bash
# Standard release
yarn release
npm run release
# Release without bumping package.json version
yarn changelog -- --first-release
npm run changelog -- --first-release
# PGP sign the release
yarn changelog -- --sign
npm run changelog -- --sign
```
This command runs:
- `yarn reset`: cleans the repo by removing all untracked files and resetting `--hard` to the latest commit. (**Note: this could be destructive.**)
- `yarn test`: build and fully test the project
- `yarn docs:publish`: generate and publish the latest version of the documentation to GitHub Pages
- `yarn changelog`: bump package.json version, update CHANGELOG.md, and git tag the release
This command runs the following tasks:
* `reset`: cleans the repo by removing all untracked files and resetting `--hard` to the latest commit. (**Note: this could be destructive.**)
* `test`: build and fully test the project
* `docs:html`: generate the latest version of the documentation
* `docs:publish`: publish the documentation to GitHub Pages
* `changelog`: bump package.json version, update CHANGELOG.md, and git tag the release
When the script finishes, it will log the final command needed to push the release commit to the repo and publish the package on the `npm` registry:
```
```bash
git push --follow-tags origin master; npm publish
```
Look over the release if you'd like, then execute the command to publish everything.
## All package scripts
## Get scripts info
You can run the `info` script for information on each script intended to be individually run.
```
yarn run info
npm run info
info:
Display information about the scripts
build:
(Trash and re)build the library
lint:
Lint all typescript source files
unit:
Build the library and run unit tests
test:
Lint, build, and test the library
watch:
Watch source files, rebuild library on changes, rerun relevant tests
cov:
Run tests, generate the HTML coverage report, and open it in a browser
docs:
Generate HTML API documentation and open it in a browser
docs:publish:
Generate HTML API documentation and push it to GitHub Pages
docs:json:
Generate API documentation in typedoc JSON format
release:
Bump package.json version, update CHANGELOG.md, tag a release
reset:
Delete all untracked files and reset the repo to the last commit
publish:
Reset, build, test, publish docs, and prepare release (a one-step publish process)
> npm-scripts-info
info:
Display information about the package scripts
build:
Clean and rebuild the project
fix:
Try to automatically fix any linting problems
test:
Lint and unit test the project
watch:
Watch and rebuild the project on save, then rerun relevant tests
cov:
Rebuild, run tests, then create and open the coverage report
doc:
Generate HTML API documentation and open it in a browser
doc:json:
Generate API documentation in typedoc JSON format
changelog:
Bump package.json version, update CHANGELOG.md, tag release
reset:
Delete all untracked files and reset the repo to the last commit
release:
One-step: clean, build, test, publish docs, and prep a release
```
## Notes
### Multiple builds (`main`, `module`, and `browser`)
# FAQs
The `src` of `typescript-starter` is compiled into three separate builds: `main`, `module`, and `browser`. The `main` build is [configured to use the CommonJS module system](https://github.com/bitjson/typescript-starter/blob/master/tsconfig.json#L8), while the `module` build [uses the new ES6 module system](https://github.com/bitjson/typescript-starter/blob/master/config/tsconfig.module.json). The browser build contains two bundles, an ES6 module (the preferred export) and a CommonJS bundle (primarily used for testing).
## Why are there two builds? (`main` and `module`)
Because Node.js does not yet support the ES6 module system, Node.js projects which depend on typescript-starter will follow the `main` field in [`package.json`](https://github.com/bitjson/typescript-starter/blob/master/package.json). Tools which support the new system (like [Rollup](https://github.com/rollup/rollup)) will follow the `module` field, giving them the ability to statically analyze typescript-starter. When building for the browser, newer tools follow the `browser` field, which will resolve to the browser build's ES6 module.
The `src` of `typescript-starter` is compiled into two separate builds: `main` and `module`. The `main` build is [configured to use the CommonJS module system](https://github.com/bitjson/typescript-starter/blob/master/tsconfig.json#L8). The `module` build [uses the new es6 module system](https://github.com/bitjson/typescript-starter/blob/master/config/tsconfig.module.json).
### Testing
Because Node.js LTS releases do not yet support the es6 module system, some projects which depend on your project will follow the `main` field in [`package.json`](https://github.com/bitjson/typescript-starter/blob/master/package.json). Tools which support the new system (like [Rollup](https://github.com/rollup/rollup), [Webpack](https://webpack.js.org/), or [Parcel](https://parceljs.org/)) will follow the `module` field, giving them the ability to statically analyze your project. These tools can tree-shake your `module` build to import only the code they need.
By convention, tests in `typescript-starter` are co-located with the files they test. The project is configured to allow tests to be written in Typescript and your library to be imported as if it were being used by another project. (E.g. `import { double, power } from 'typescript-starter'`.) This makes tests both intuitive to write and easy to read as another form of documentation.
## Why put tests next to the source code?
Note, tests are compiled and performed on the final builds in the standard Node.js runtime (rather than an alternative like [ts-node](https://github.com/TypeStrong/ts-node)) to ensure tests pass in that environment. If you are using [ts-node in production](https://github.com/TypeStrong/ts-node/issues/104), you can modify this project to skip test compilation.
By convention, sample tests in this project are adjacent to the files they test.
### Browser libraries
* Such tests are easy to find.
* You see at a glance if a part of your project lacks tests.
* Nearby tests can reveal how a part works in context.
* When you move the source (inevitable), you remember to move the test.
* When you rename the source file (inevitable), you remember to rename the test file.
While both the browser and the Node.js versions of the library are tested, this starter currently does **not** run the browser tests in a real browser ([AVA](https://github.com/avajs/ava) is currently Node-only). While the current testing system will be sufficient for most use cases, some projects will (also) need to implement a browser-based testing system like [karma-ava](https://github.com/avajs/karma-ava). (Pull requests welcome!)
(Bullet points taken from [Angular's Testing Guide](https://angular.io/guide/testing#q-spec-file-location).)
Note: test coverage is only checked against the Node.js implementation. This is much simpler, and works well for libraries where the node and browser implementations have different dependencies and only minor adapter code. With only a few lines of differences (e.g. `src/adapters/crypto.browser.ts`), including those few lines in test coverage analysis usually isn't necessary.
## Can I move the tests?
### Building browser dependencies
Yes. For some projects, separating tests from the code they test may be desirable. This project is already configured to test any `*.spec.ts` files located in the `src` directory, so reorganize your tests however you'd like. You can put them all in a single folder, add tests that test more than one file, or mix and match strategies (e.g. for other types of tests, like integration or e2e tests).
This starter demonstrates importing and using a CommonJS module ([`hash.js`](https://github.com/indutny/hash.js)) for it's `hash256` method when built for the browser. See the `build:browser-deps` [package script](./package.json) and [rollup.config.js](./config/exports/rollup.config.js) for more details. Of course, your project likely does not need this dependency, so it can be removed. If your library doesn't need to bundle external dependencies for the browser, several other devDependencies can also be removed (`browserify`, `rollup-plugin-alias`, `rollup-plugin-commonjs`, `rollup-plugin-node-resolve`, etc).
## Can I use ts-node for all the things?
### Dependency on `tslib`
Tests are compiled and performed on the final builds in the standard Node.js runtime (rather than an alternative like [ts-node](https://github.com/TypeStrong/ts-node)) to ensure that they pass in that environment. If you are build a Node.js application, and you are using [ts-node in production](https://github.com/TypeStrong/ts-node/issues/104), you can modify this project to use `ts-node` rather than a `build` step.
By default, this project requires [tslib](https://github.com/Microsoft/tslib) as a dependency. This is the recommended way to use Typescript's es6 &amp; es7 transpiling for sizable projects, but you can remove this dependency by removing the `importHelpers` compiler option in `tsconfig.json`. Depending on your usage, this may increase the size of your library significantly, as the Typescript compiler will inject it's helper functions directly into every file which uses them. (See also: [`noEmitHelpers` &rarr;](https://www.typescriptlang.org/docs/handbook/compiler-options.html))
**However, if you're building any kind of library, you should always compile to javascript.**
### Targeting older environments
Library authors sometimes make the mistake of distributing their libraries in typescript. Intuitively, this seems like a reasonable course of action, especially if all of your intended consumers will be using typescript as well.
By default, this library targets environments with native (or already-polyfilled) support for es6 features. If your library needs to target Internet Explorer, outdated Android browsers, or versions of Node older than v4, you may need to change the `target` in `tsconfig.json` to `es5` (rather than `es6`) and bring in a Promise polyfill (such as [es6-promise](https://github.com/stefanpenner/es6-promise)).
TypeScript has versions, and different versions of TypeScript may not be compatible. Upgrading to a new major version of TypeScript sometimes requires code changes, and must be done project-by-project. Additionally, if you're using the latest version of TypeScript to build your library, and one of your consumers is using an older version in their application, their compiler will be unable to compile your library.
It's a good idea to maintain 100% unit test coverage, and always test in the environments you target.
## How do I bundle my library for the browser?
## typescript-starter in the wild
The short answer is: **don't pre-bundle your library**.
Previous versions of `typescript-starter` included browser bundling using [Rollup](https://github.com/rollup/rollup). This feature has since been removed, since very few libraries should ever be pre-bundled.
If the consumer of your library is using Node.js, bundling is especially unnecessary, since Node.js can reliably resolve dependencies, and bundling may even make debugging more difficult.
If the consumer of your library is a browser application, **the application likely has its own build tooling**. Very few serious applications are manually bundling their javascript, especially with easy to use, no configuration tools like [Parcel](https://parceljs.org/) available.
Your library is most useful to downstream consumers as a clean, modular codebase, properly exporting features using es6 exports. Consumers can import the exact es6 exports they need from your library, and tree-shake the rest.
## How can my library provide different functionality between Node.js and the browser?
In the past, complex javascript libraries have used solutions like [Browserify](http://browserify.org/) to bundle a version of their application for the browser. Most of these solutions work by allowing library developers to extensively configure and manually override various dependencies with respective browser versions.
For example, where a Node.js application might use Node.js' built-in [`crypto` module](https://nodejs.org/api/crypto.html), a browser version would need to fall back to a polyfill-like alternative dependency like [`crypto-browserify`](https://github.com/crypto-browserify/crypto-browserify).
With es6, this customization and configuration is no longer necessary. Your library can now export different functionality for different consumers. While browser consumers may import a native JavaScript crypto implementation which your library exports, Node.js users can choose to import a different, faster implementation which your library exports.
See [hash.ts](./src/lib/hash.ts) for a complete example. Two different functions are exported, `sha256`, and `sha256Native`. Browser consumers will not be able to import `sha256Native`, since their bundler will be unable to resolve the built-in Node.js dependency (their bundler will throw an error). Node.js users, however, will be able to import it normally. Each consumer can import the exact functionality they need.
One perceived downside of this solution is that it complicates the library's API. Browser consumers will sometimes import one feature while Node.js users import another. While this argument has merit, we should weigh it against the benefits.
Providing a public API where consumer code is the same between browsers and Node.js is desirable, but it comes at the cost of significant configuration and complexity. In many cases, it requires that code be aware of its environment at runtime, requiring additional complexity and testing.
A better way to provide this developer experience is to provide similar APIs for each environment, and then encourage the use of es6 import aliasing to standardize between them.
For example, in the documentation for `typescript-starter`, we encourage Node.js users to import `sha256Native as sha256`. With this convention, we get a standard API without loaders or dependency substitution hacks.
```js
// browser-application.js
import { sha256 } from 'typescript-starter';
// fully-portable code
console.log(sha256('test'));
```
```js
// node-application.js
import { sha256Native as sha256 } from 'typescript-starter';
// fully-portable code
console.log(sha256('test'));
```
## What about Git hooks to validate commit messages?
This project uses [standard-version](https://github.com/conventional-changelog/standard-version) to automatically update the changelog based on commit messages since the last release. To do this, each relevant commit must be properly formatted.
To ensure all commits follow the proper conventions, you can use a package like [commitlint](https://github.com/marionebl/commitlint) with [Husky](https://github.com/typicode/husky). However, keep in mind that commit hooks can be confusing, especially for new contributors. They also interfere with some development tools and workflows.
If your project is private, or will primarily receive contributions from long-running contributors, this may be a good fit. Otherwise, this setup may raise the barrier to one-off contributions slightly.
Note, as a maintainer, if you manage your project on GitHub or a similar website, you can now use the `Squash and Merge` option to add a properly formatted, descriptive commit messages when merging each pull request. This is likely to be more valuable than trying to force one-time contributors to adhere to commit conventions, since you can also maintain a more consistent language style. Because this is the best choice for the vast majority of projects, `typescript-starter` does not bundle any commit message validation.
# Contributing
To work on the CLI, clone and build the repo, then use `npm link` to install it globally.
```
git clone https://github.com/bitjson/typescript-starter.git
cd typescript-starter
npm install
npm test
npm link
```
To manually test the CLI, you can use the `TYPESCRIPT_STARTER_REPO_URL` environment variable to test a clone from your local repo. Run `npm run watch` as you're developing, then in a different testing directory:
```
mkdir typescript-starter-testing
cd typescript-starter-testing
TYPESCRIPT_STARTER_REPO_URL='/local/path/to/typescript-starter' typescript-starter
```
You can also `TYPESCRIPT_STARTER_REPO_URL` to any valid Git URL, such as your fork of this repo:
```
TYPESCRIPT_STARTER_REPO_URL='https://github.com/YOUR_USERNAME/typescript-starter.git' typescript-starter
```
If you're using [VS Code](https://code.visualstudio.com/), the `Debug CLI` launch configuration also allows you to immediately build and step through execution of the CLI.
# In the wild
You can find more advanced configurations, usage examples, and inspiration from projects using `typescript-starter`.
- [BitAuth](https://github.com/bitauth/) A universal identity and authentication protocol, based on bitcoin
- [s6: Super Simple Secrets * Simple Secure Storage](https://gitlab.com/td7x/s6/) An NPM library and tool to sprawl secrets with S3, ease, and encryption
* [BitAuth](https://github.com/bitauth/) A universal identity and authentication protocol, based on bitcoin
* [s6: Super Simple Secrets \* Simple Secure Storage](https://gitlab.com/td7x/s6/) An NPM library and tool to sprawl secrets with S3, ease, and encryption
Using `typescript-starter` for your project? Please send a pull request to add it to the list!

9
bin/typescript-starter Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env node
/**
* This file needs the 'x' permission to be spawned by tests. Since TypeScript
* doesn't currently offer a way to set permissions of generated files
* (https://github.com/Microsoft/TypeScript/issues/16667), we track this file
* with Git, and simply require the generated CLI.
*/
require('../build/main/cli/cli.js');

3683
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@
"version": "2.0.0",
"description": "A typescript starter for building javascript libraries and projects",
"bin": {
"typescript-starter": "./build/main/typescript-starter.js"
"typescript-starter": "./build/main/cli/cli.js"
},
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
@@ -39,11 +39,12 @@
"fix": "run-s fix:*",
"fix:prettier": "prettier 'src/**/*.ts' --write",
"fix:tslint": "tslint --fix --project . src/**/*.ts",
"test": "run-s test:*",
"test": "run-s build test:*",
"test:lint": "tslint --project . src/**/*.ts && prettier 'src/**/*.ts' --list-different",
"test:unit": "nyc ava",
"test:coverage": "nyc check-coverage --lines 100 --functions 100 --branches 100",
"watch": "run-s clean && run-p 'build:* -- -w' 'test:unit -- --watch'",
"test:unit": "nyc --silent ava",
"test:coverage": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"test:nsp": "nsp check",
"watch": "run-s clean build:main && run-p 'build:main -- -w' 'test:unit -- --watch'",
"cov": "run-s build test:unit cov:html && opn coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov",
@@ -58,7 +59,7 @@
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and Rebuild the project",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
@@ -74,24 +75,35 @@
},
"dependencies": {
"chalk": "^2.3.1",
"cross-spawn": "^6.0.4",
"del": "^3.0.0",
"execa": "^0.9.0",
"github-username": "^4.1.0",
"gradient-string": "^1.0.0",
"inquirer": "^5.1.0",
"meow": "^4.0.0",
"ora": "^2.0.0",
"project-version": "^1.0.0",
"replace-in-file": "^3.1.1",
"sha.js": "^2.4.10",
"sorted-object": "^2.0.1",
"trash": "^4.2.1"
"update-notifier": "^2.3.0"
},
"devDependencies": {
"@types/node": "^8.9.4",
"@types/del": "^3.0.0",
"@types/execa": "^0.8.1",
"@types/inquirer": "0.0.37",
"@types/meow": "^4.0.1",
"@types/nock": "^9.1.2",
"@types/node": "^8.9.5",
"@types/ora": "^1.3.2",
"@types/update-notifier": "^2.0.0",
"ava": "^1.0.0-beta.3",
"codecov": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^1.0.0",
"nock": "^9.2.3",
"npm-run-all": "^4.1.2",
"npm-scripts-info": "^0.3.6",
"nsp": "^3.2.1",
"nyc": "^11.5.0",
"opn-cli": "^3.1.0",
"prettier": "^1.10.2",
@@ -99,7 +111,8 @@
"trash-cli": "^1.4.0",
"tslint": "^5.4.3",
"tslint-config-prettier": "^1.8.0",
"typedoc": "^0.10.0",
"tslint-immutable": "^4.5.1",
"typedoc": "^0.11.1",
"typescript": "^2.4.1"
},
"nyc": {
@@ -118,5 +131,10 @@
},
"prettier": {
"singleQuote": true
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}

93
src/cli/args.ts Normal file
View File

@@ -0,0 +1,93 @@
import meow from 'meow';
import { Package, UpdateInfo, UpdateNotifier } from 'update-notifier';
import { Runner, TypescriptStarterOptions, validateName } from './primitives';
export async function checkArgs(): Promise<
TypescriptStarterOptions | undefined
> {
const cli = meow(
`
Usage
$ typescript-starter
Non-Interactive Usage
$ typescript-starter <project-name> [options]
Options
--description, -d package.json description
--yarn use yarn (default: npm)
--node include node.js type definitions
--dom include DOM type definitions
--noinstall skip yarn/npm install
Non-Interactive Example
$ typescript-starter my-library -d 'do something, better'
`,
{
flags: {
description: {
alias: 'd',
default: 'a typescript-starter project',
type: 'string'
},
dom: {
default: false,
type: 'boolean'
},
node: {
default: false,
type: 'boolean'
},
noinstall: {
default: false,
type: 'boolean'
},
yarn: {
default: false,
type: 'boolean'
}
}
}
);
// immediately check for updates every time we run typescript-starter
const updateInfo = await new Promise<UpdateInfo>((resolve, reject) => {
const notifier = new UpdateNotifier({
callback: (error, update) => {
// tslint:disable-next-line:no-expression-statement
error ? reject(error) : resolve(update);
},
pkg: cli.pkg as Package
});
// tslint:disable-next-line:no-expression-statement
notifier.check();
});
// tslint:disable-next-line:no-if-statement
if (updateInfo.type !== 'latest') {
throw new Error(`
Your version of typescript-starter is outdated.
Consider using 'npx typescript-starter' to always get the latest version.
`);
}
const input = cli.input[0];
// tslint:disable-next-line:no-if-statement
if (!input) {
// no project-name provided, return to collect options in interactive mode
return undefined;
}
const validOrMsg = await validateName(input);
// tslint:disable-next-line:no-if-statement
if (typeof validOrMsg === 'string') {
throw new Error(validOrMsg);
}
return {
description: cli.flags.description,
domDefinitions: cli.flags.dom,
install: !cli.flags.noinstall,
name: input,
nodeDefinitions: cli.flags.node,
runner: cli.flags.yarn ? Runner.Yarn : Runner.Npm
};
}

23
src/cli/cli.ts Normal file
View File

@@ -0,0 +1,23 @@
// tslint:disable:no-expression-statement no-console
import chalk from 'chalk';
import { checkArgs } from './args';
import { inquire } from './inquire';
import { getIntro } from './primitives';
import { LiveTasks } from './tasks';
import { typescriptStarter } from './typescript-starter';
(async () => {
const cliOptions = await checkArgs();
const options = cliOptions
? cliOptions
: await (async () => {
console.log(getIntro(process.stdout.columns));
return inquire();
})();
return typescriptStarter(options, LiveTasks);
})().catch((err: Error) => {
console.error(`
${chalk.red(err.message)}
`);
process.exit(1);
});

107
src/cli/inquire.ts Normal file
View File

@@ -0,0 +1,107 @@
import { prompt, Question } from 'inquirer';
import { Runner, TypescriptStarterOptions, validateName } from './primitives';
export async function inquire(): Promise<TypescriptStarterOptions> {
const packageNameQuestion: Question = {
filter: (answer: string) => answer.trim(),
message: 'Enter the new package name:',
name: 'name',
type: 'input',
validate: validateName
};
enum ProjectType {
Node = 'node',
Library = 'lib'
}
const projectTypeQuestion: Question = {
choices: [
{ name: 'Node.js application', value: ProjectType.Node },
{ name: 'Javascript library', value: ProjectType.Library }
],
message: 'What are you making?',
name: 'type',
type: 'list'
};
const packageDescriptionQuestion: Question = {
filter: (answer: string) => answer.trim(),
message: 'Enter the package description:',
name: 'description',
type: 'input',
validate: (answer: string) => answer.length > 0
};
const runnerQuestion: Question = {
choices: [
{ name: 'npm', value: Runner.Npm },
{ name: 'yarn', value: Runner.Yarn }
],
message: 'Will this project use npm or yarn?',
name: 'runner',
type: 'list'
};
enum TypeDefinitions {
none = 'none',
Node = 'node',
DOM = 'dom',
NodeAndDOM = 'both'
}
const typeDefsQuestion: Question = {
choices: [
{
name: `None — the library won't use any globals or modules from Node.js or the DOM`,
value: '0'
},
{
name: `Node.js — parts of the library require access to Node.js globals or built-in modules`,
value: '1'
},
{
name: `DOM — parts of the library require access to the Document Object Model (DOM)`,
value: '2'
},
{
name: `Both Node.js and DOM — some parts of the library require Node.js, other parts require DOM access`,
value: '3'
}
],
message: 'Which global type definitions do you want to include?',
name: 'definitions',
type: 'list',
when: (answers: any) => answers.type === ProjectType.Library
};
return prompt([
packageNameQuestion,
projectTypeQuestion,
packageDescriptionQuestion,
runnerQuestion,
typeDefsQuestion
]).then(answers => {
const { definitions, description, name, runner } = answers as {
readonly definitions?: TypeDefinitions;
readonly description: string;
readonly name: string;
readonly runner: Runner;
};
return {
description,
domDefinitions: definitions
? [TypeDefinitions.DOM, TypeDefinitions.NodeAndDOM].includes(
definitions
)
: false,
install: true,
name,
nodeDefinitions: definitions
? [TypeDefinitions.Node, TypeDefinitions.NodeAndDOM].includes(
definitions
)
: false,
runner
};
});
}

39
src/cli/primitives.ts Normal file
View File

@@ -0,0 +1,39 @@
import chalk from 'chalk';
import { existsSync } from 'fs';
import gradient from 'gradient-string';
export enum Runner {
Npm = 'npm',
Yarn = 'yarn'
}
export interface TypescriptStarterOptions {
readonly description: string;
readonly domDefinitions: boolean;
readonly install: boolean;
readonly nodeDefinitions: boolean;
readonly name: string;
readonly runner: Runner;
}
export function validateName(input: string): true | string {
return !/^\s*[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*\s*$/.test(input)
? 'Name should be in-kebab-case'
: existsSync(input)
? `The "${input}" path already exists in this directory.`
: true;
}
export function getIntro(columns: number | undefined): string {
const ascii = `
_ _ _ _ _
| |_ _ _ _ __ ___ ___ ___ _ __(_)_ __ | |_ ___| |_ __ _ _ __| |_ ___ _ __
| __| | | | '_ \\ / _ \\/ __|/ __| '__| | '_ \\| __|____/ __| __/ _\` | '__| __/ _ \\ '__|
| |_| |_| | |_) | __/\\__ \\ (__| | | | |_) | ||_____\\__ \\ || (_| | | | || __/ |
\\__|\\__, | .__/ \\___||___/\\___|_| |_| .__/ \\__| |___/\\__\\__,_|_| \\__\\___|_|
|___/|_| |_|
`;
return columns && columns >= 85
? chalk.bold(gradient.mind(ascii))
: `\n${chalk.cyan.bold.underline('typescript-starter')}\n`;
}

146
src/cli/tasks.ts Normal file
View File

@@ -0,0 +1,146 @@
// tslint:disable:no-console no-if-statement no-expression-statement
import execa, { ExecaStatic, Options } from 'execa';
import { readFileSync, writeFileSync } from 'fs';
import githubUsername from 'github-username';
import { join } from 'path';
import { Runner } from './primitives';
const repo =
process.env.TYPESCRIPT_STARTER_REPO_URL ||
'https://github.com/bitjson/typescript-starter.git';
export interface Tasks {
readonly cloneRepo: (
dir: string
) => Promise<{ readonly commitHash: string; readonly gitHistoryDir: string }>;
readonly getGithubUsername: (email: string) => Promise<string>;
readonly getUserInfo: () => Promise<{
readonly gitEmail: string;
readonly gitName: string;
}>;
readonly initialCommit: (hash: string, projectDir: string) => Promise<void>;
readonly install: (
shouldInstall: boolean,
runner: Runner,
projectDir: string
) => Promise<void>;
readonly readPackageJson: (path: string) => any;
readonly writePackageJson: (path: string, pkg: any) => void;
}
// We implement these as function factories to make unit testing easier.
export const cloneRepo = (spawner: ExecaStatic) => async (dir: string) => {
const cwd = process.cwd();
const projectDir = join(cwd, dir);
const gitHistoryDir = join(projectDir, '.git');
try {
await spawner('git', ['clone', '--depth=1', repo, dir], {
cwd,
stdio: 'inherit'
});
} catch (err) {
if (err.code === 'ENOENT') {
throw new Error(`
Git is not installed on your PATH. Please install Git and try again.
For more information, visit: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
`);
} else {
throw new Error(`Git clone failed.`);
}
}
try {
const revParseResult = await spawner('git', ['rev-parse', 'HEAD'], {
cwd: projectDir,
encoding: 'utf8',
stdio: ['pipe', 'pipe', 'inherit']
});
const commitHash = revParseResult.stdout;
return { commitHash, gitHistoryDir };
} catch (err) {
throw new Error(`Git rev-parse failed.`);
}
};
export const getGithubUsername = (fetcher: any) => async (email: string) =>
fetcher(email).catch(() => {
// if username isn't found, just return a placeholder
return 'YOUR_USER_NAME';
});
export const getUserInfo = (spawner: ExecaStatic) => async () => {
const opts: Options = {
encoding: 'utf8',
stdio: ['pipe', 'pipe', 'inherit']
};
const nameResult = await spawner('git', ['config', 'user.name'], opts);
const emailResult = await spawner('git', ['config', 'user.email'], opts);
return {
gitEmail: emailResult.stdout,
gitName: nameResult.stdout
};
};
export const initialCommit = (spawner: ExecaStatic) => async (
hash: string,
projectDir: string
) => {
const opts: Options = {
cwd: projectDir,
encoding: 'utf8',
stdio: 'pipe'
};
await spawner('git', ['init'], opts);
await spawner('git', ['add', '-A'], opts);
await spawner(
'git',
[
'commit',
'-m',
`Initial commit\n\nCreated with typescript-starter@${hash}`
],
opts
);
};
export const install = (spawner: ExecaStatic) => async (
shouldInstall: boolean,
runner: Runner,
projectDir: string
) => {
const opts: Options = {
cwd: projectDir,
encoding: 'utf8',
stdio: 'inherit'
};
if (!shouldInstall) {
return;
}
try {
runner === Runner.Npm
? spawner('npm', ['install'], opts)
: spawner('yarn', opts);
} catch (err) {
throw new Error(`Installation failed. You'll need to install manually.`);
}
};
const readPackageJson = (path: string) =>
JSON.parse(readFileSync(path, 'utf8'));
const writePackageJson = (path: string, pkg: any) => {
// write using the same format as npm:
// https://github.com/npm/npm/blob/latest/lib/install/update-package-json.js#L48
const stringified = JSON.stringify(pkg, null, 2) + '\n';
return writeFileSync(path, stringified);
};
export const LiveTasks: Tasks = {
cloneRepo: cloneRepo(execa),
getGithubUsername: getGithubUsername(githubUsername),
getUserInfo: getUserInfo(execa),
initialCommit: initialCommit(execa),
install: install(execa),
readPackageJson,
writePackageJson
};

View File

@@ -0,0 +1,192 @@
// Tests in this file actually run the CLI and attempt to validate its behavior.
// Git must be installed on the PATH of the testing machine.
// tslint:disable:no-expression-statement
import test, { ExecutionContext } from 'ava';
import del from 'del';
import execa from 'execa';
import meow from 'meow';
import { join } from 'path';
test('returns version', async t => {
const expected = meow('').pkg.version;
t.truthy(typeof expected === 'string');
const { stdout } = await execa(`./bin/typescript-starter`, ['--version']);
t.is(stdout, expected);
});
test('returns help/usage', async t => {
const { stdout } = await execa(`./bin/typescript-starter`, ['--help']);
t.regex(stdout, /Usage/);
});
/**
* NOTE: many of the tests below validate file modification. The filesystem is
* not mocked, and these tests make real changes. Proceed with caution.
*
* TODO: mock the filesystem - https://github.com/avajs/ava/issues/665
*
* Until the filesystem is mocked, filesystem changes made by these tests should
* be contained in the `build` directory for easier clean up.
*/
enum testDirectories {
one = 'test-one',
two = 'test-two',
three = 'test-three',
four = 'test-four'
}
test.after(async () => {
await del([
`./build/${testDirectories.one}`,
`./build/${testDirectories.two}`,
`./build/${testDirectories.three}`,
`./build/${testDirectories.four}`
]);
});
test('errors if project name collides with an existing path', async t => {
const existingDir = 'build';
const error = await t.throws(
execa(`./bin/typescript-starter`, [existingDir])
);
t.regex(error.stderr, /"build" path already exists/);
});
test('errors if project name is not in kebab-case', async t => {
const error = await t.throws(
execa(`./bin/typescript-starter`, ['name with spaces'])
);
t.regex(error.stderr, /should be in-kebab-case/);
});
test('integration test 1: parses CLI arguments, handles options properly', async t => {
const { stdout } = await execa(
`../bin/typescript-starter`,
[
`${testDirectories.one}`,
'-description "example description 1"',
'--noinstall'
],
{
cwd: join(process.cwd(), 'build'),
env: {
TYPESCRIPT_STARTER_REPO_URL: process.cwd()
}
}
);
t.regex(stdout, new RegExp(`Created ${testDirectories.one} 🎉`));
// TODO: validate contents of testDirectories.one
});
test('integration test 2: parses CLI arguments, handles options properly', async t => {
const { stdout } = await execa(
`../bin/typescript-starter`,
[
`${testDirectories.two}`,
'-description "example description 2"',
'--yarn',
'--node',
'--dom',
'--noinstall'
],
{
cwd: join(process.cwd(), 'build'),
env: {
TYPESCRIPT_STARTER_REPO_URL: process.cwd()
}
}
);
t.regex(stdout, new RegExp(`Created ${testDirectories.two} 🎉`));
// TODO: validate contents of testDirectories.two
});
const down = '\x1B\x5B\x42';
const up = '\x1B\x5B\x41';
const enter = '\x0D';
const ms = (milliseconds: number) =>
new Promise<void>(resolve => setTimeout(resolve, milliseconds));
async function testInteractive(
t: ExecutionContext<{}>,
projectName: string,
entry: ReadonlyArray<string | ReadonlyArray<string>>
): Promise<void> {
const lastCheck = entry[3] !== undefined;
t.plan(lastCheck ? 6 : 5);
const proc = execa(`../bin/typescript-starter`, ['--noinstall'], {
cwd: join(process.cwd(), 'build'),
env: {
TYPESCRIPT_STARTER_REPO_URL: process.cwd()
}
});
// TODO: missing in Node.js type definition's ChildProcess.stdin?
// https://nodejs.org/api/process.html#process_process_stdin
// proc.stdin.setEncoding('utf8');
// tslint:disable-next-line:prefer-const no-let
let buffer = '';
const checkBuffer = (regex: RegExp) => t.regex(buffer, regex);
const type = (input: string) => proc.stdin.write(input);
const clearBuffer = () => (buffer = '');
proc.stdout.on('data', (chunk: Buffer) => {
buffer += chunk.toString();
});
// wait for first chunk to be emitted
await new Promise(resolve => {
proc.stdout.once('data', resolve);
});
await ms(200);
checkBuffer(new RegExp(`typescript-starter.|s*Enter the new package name`));
clearBuffer();
type(`${projectName}${enter}`);
await ms(200);
checkBuffer(new RegExp(`${projectName}.|s*What are you making?`));
clearBuffer();
type(`${entry[0][0]}${enter}`);
await ms(200);
checkBuffer(new RegExp(`${entry[0][1]}.|s*Enter the package description`));
clearBuffer();
type(`${entry[1]}${enter}`);
await ms(200);
checkBuffer(new RegExp(`${entry[1]}.|s*npm or yarn?`));
clearBuffer();
type(`${entry[2][0]}${enter}`);
await ms(200);
const search = `${entry[2][1]}.|s*global type definitions`;
const exp = lastCheck
? new RegExp(`${search}`) // should match
: new RegExp(`(?!${search})`); // should not match
checkBuffer(exp);
// tslint:disable-next-line:no-if-statement
if (lastCheck) {
clearBuffer();
type(`${entry[3][0]}${enter}`);
await ms(200);
checkBuffer(new RegExp(`${entry[3][1]}`));
}
// TODO: validate contents?
}
test('integration test 3: interactive mode, javascript library', async t => {
await testInteractive(t, `${testDirectories.three}`, [
[`${down}${up}${down}`, `Javascript library`],
`integration test 3 description${enter}`,
[`${down}${up}${down}${enter}`, `yarn`],
[`${down}${down}${down}${enter}`, `Both Node.js and DOM`]
]);
});
test('integration test 4: interactive mode, node.js application', async t => {
await testInteractive(t, `${testDirectories.four}`, [
[`${down}${up}`, `Node.js application`],
`integration test 4 description${enter}`,
[`${down}${up}${enter}`, `npm`]
]);
});

View File

@@ -0,0 +1,133 @@
// tslint:disable:no-expression-statement
import test from 'ava';
import { ExecaStatic } from 'execa';
import meow from 'meow';
import nock from 'nock';
import { checkArgs } from '../args';
import { getIntro, Runner } from '../primitives';
import {
cloneRepo,
getGithubUsername,
getUserInfo,
initialCommit,
install
} from '../tasks';
test('errors if outdated', async t => {
nock.disableNetConnect();
nock('https://registry.npmjs.org:443')
.get('/typescript-starter')
.reply(200, {
'dist-tags': { latest: '9000.0.1' },
name: 'typescript-starter',
versions: {
'9000.0.1': {
version: '9000.0.1'
}
}
});
const error = await t.throws(checkArgs);
t.regex(error.message, /is outdated/);
});
test(`doesn't error if not outdated`, async t => {
const currentVersion = meow('').pkg.version;
t.truthy(typeof currentVersion === 'string');
nock.disableNetConnect();
nock('https://registry.npmjs.org:443')
.get('/typescript-starter')
.reply(200, {
'dist-tags': { latest: currentVersion },
name: 'typescript-starter',
versions: {
[currentVersion]: {
version: currentVersion
}
}
});
await t.notThrows(checkArgs);
});
test(`errors if update-notifier fails`, async t => {
nock.disableNetConnect();
nock('https://registry.npmjs.org:443')
.get('/typescript-starter')
.reply(404, {});
const error = await t.throws(checkArgs);
t.regex(error.message, /doesn\'t exist/);
});
test('ascii art shows if stdout has 85+ columns', async t => {
const jumbo = getIntro(100);
const snippet = `| __| | | | '_ \\ / _ \\/ __|/ __| '__| | '_ \\|`;
t.regex(jumbo, new RegExp(snippet));
});
const mockErr = (code?: string | number) =>
((() => {
const err = new Error();
// tslint:disable-next-line:no-object-mutation
(err as any).code = code;
throw err;
}) as any) as ExecaStatic;
test('cloneRepo: errors when Git is not installed on PATH', async t => {
const error = await t.throws(cloneRepo(mockErr('ENOENT'))('fail'));
t.regex(error.message, /Git is not installed on your PATH/);
});
test('cloneRepo: throws when clone fails', async t => {
const error = await t.throws(cloneRepo(mockErr(128))('fail'));
t.regex(error.message, /Git clone failed./);
});
test('cloneRepo: throws when rev-parse fails', async t => {
// tslint:disable-next-line:prefer-const no-let
let calls = 0;
const mock = () => {
calls++;
return calls === 1 ? {} : (mockErr(128) as any)();
};
const error = await t.throws(cloneRepo((mock as any) as ExecaStatic)('fail'));
t.regex(error.message, /Git rev-parse failed./);
});
test('getGithubUsername: returns found users', async t => {
const mockFetcher = async (email: string) => email.split('@')[0];
const username: string = await getGithubUsername(mockFetcher)(
'bitjson@github.com'
);
t.is(username, 'bitjson');
});
test('getGithubUsername: returns placeholder if not found', async t => {
const mockFetcher = async () => {
throw new Error();
};
const username: string = await getGithubUsername(mockFetcher)(
'bitjson@github.com'
);
t.is(username, 'YOUR_USER_NAME');
});
test('getUserInfo: throws generated errors', async t => {
const error = await t.throws(getUserInfo(mockErr(1))());
t.is(error.code, 1);
});
test('initialCommit: throws generated errors', async t => {
const error = await t.throws(initialCommit(mockErr(1))('deadbeef', 'fail'));
t.is(error.code, 1);
});
test('install: uses the correct runner', async t => {
const mock = (((runner: Runner) => {
runner === Runner.Yarn ? t.pass() : t.fail();
}) as any) as ExecaStatic;
await install(mock)(true, Runner.Yarn, 'pass');
});
test('install: throws pretty error on failure', async t => {
const error = await t.throws(install(mockErr())(true, Runner.Npm, 'fail'));
t.is(error.message, "Installation failed. You'll need to install manually.");
});

View File

@@ -0,0 +1,151 @@
// tslint:disable:no-console no-if-statement no-expression-statement
import chalk from 'chalk';
import del from 'del';
import { renameSync } from 'fs';
import ora from 'ora';
import { join } from 'path';
import replace from 'replace-in-file';
import { Runner, TypescriptStarterOptions } from './primitives';
import { Tasks } from './tasks';
export async function typescriptStarter(
{
description,
domDefinitions,
install,
name,
nodeDefinitions,
runner
}: TypescriptStarterOptions,
tasks: Tasks
): Promise<void> {
console.log();
const { commitHash, gitHistoryDir } = await tasks.cloneRepo(name);
await del([gitHistoryDir]);
console.log(`
${chalk.dim(`Cloned at commit: ${commitHash}`)}
`);
const { gitName, gitEmail } = await tasks.getUserInfo();
const username = await tasks.getGithubUsername(gitEmail);
const spinner1 = ora('Updating package.json').start();
const projectPath = join(process.cwd(), name);
const pkgPath = join(projectPath, 'package.json');
// dependencies to retain for Node.js applications
const nodeKeptDeps: ReadonlyArray<any> = ['sha.js'];
const pkg = tasks.readPackageJson(pkgPath);
const newPkg = {
...pkg,
bin: {},
dependencies: nodeDefinitions
? nodeKeptDeps.reduce((all, dep) => {
return { ...all, [dep]: pkg.dependencies[dep] };
}, {})
: {},
description,
keywords: [],
name,
repository: `https:// github.com/${username}/${name}`,
scripts:
runner === Runner.Yarn
? {
...pkg.scripts,
preinstall: `node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('${name} must be installed with Yarn: https://yarnpkg.com/')\"`
}
: { ...pkg.scripts },
version: '1.0.0'
};
tasks.writePackageJson(pkgPath, newPkg);
spinner1.succeed();
const spinner2 = ora('Updating .gitignore').start();
if (runner === Runner.Yarn) {
await replace({
files: join(projectPath, '.gitignore'),
from: 'yarn.lock',
to: 'package-lock.json'
});
}
spinner2.succeed();
const spinner3 = ora('Updating .npmignore').start();
await replace({
files: join(projectPath, '.npmignore'),
from: 'examples\n',
to: ''
});
spinner3.succeed();
const spinner4 = ora('Updating LICENSE').start();
await replace({
files: join(projectPath, 'LICENSE'),
from: 'Jason Dreyzehner',
to: gitName
});
spinner4.succeed();
const spinner5 = ora('Deleting unnecessary files').start();
await del([
join(projectPath, 'examples'),
join(projectPath, 'CHANGELOG.md'),
join(projectPath, 'README.md'),
join(projectPath, 'package-lock.json'),
join(projectPath, 'src', 'typescript-starter.ts')
]);
spinner5.succeed();
const spinner6 = ora('Updating README.md').start();
renameSync(
join(projectPath, 'README-starter.md'),
join(projectPath, 'README.md')
);
await replace({
files: join(projectPath, 'README.md'),
from: 'package-name',
to: name
});
spinner6.succeed();
if (!domDefinitions) {
const spinner6A = ora(`tsconfig: don't include "dom" lib`).start();
await replace({
files: join(projectPath, 'tsconfig.json'),
from: '"lib": ["es2017", "dom"]',
to: '"lib": ["es2017"]'
});
spinner6A.succeed();
}
if (!nodeDefinitions) {
const spinner6B = ora(`tsconfig: don't include "node" types`).start();
await replace({
files: join(projectPath, 'tsconfig.json'),
from: '"types": ["node"]',
to: '"types": []'
});
await replace({
files: join(projectPath, 'src', 'index.ts'),
from: `export * from './lib/hash';\n`,
to: ''
});
await del([
join(projectPath, 'src', 'lib', 'hash.ts'),
join(projectPath, 'src', 'lib', 'hash.spec.ts'),
join(projectPath, 'src', 'lib', 'async.ts'),
join(projectPath, 'src', 'lib', 'async.spec.ts')
]);
spinner6B.succeed();
}
await tasks.install(install, runner, projectPath);
const spinner7 = ora(`Initializing git repository`).start();
await tasks.initialCommit(commitHash, projectPath);
spinner7.succeed();
console.log(`\n${chalk.blue.bold(`Created ${name} 🎉`)}\n`);
}

View File

@@ -1,3 +1,4 @@
// tslint:disable:no-expression-statement
import { test } from 'ava';
import { asyncABC } from './async';

View File

@@ -17,13 +17,13 @@
*
* @returns a Promise which should contain `['a','b','c']`
*/
export async function asyncABC() {
function somethingSlow(index: 0 | 1 | 2) {
export async function asyncABC(): Promise<ReadonlyArray<string>> {
function somethingSlow(index: 0 | 1 | 2): Promise<string> {
const storage = 'abc'.charAt(index);
return new Promise<string>(resolve => {
// here we pretend to wait on the network
setTimeout(() => resolve(storage), 0);
});
return new Promise<string>(resolve =>
// later...
resolve(storage)
);
}
const a = await somethingSlow(0);
const b = await somethingSlow(1);

View File

@@ -1,3 +1,4 @@
// tslint:disable:no-expression-statement no-object-mutation
import { Macro, test } from 'ava';
import { sha256, sha256Native } from './hash';

View File

@@ -13,7 +13,7 @@ import shaJs from 'sha.js';
*
* @returns sha256 message digest
*/
export function sha256(message: string) {
export function sha256(message: string): string {
return shaJs('sha256')
.update(message)
.digest('hex');
@@ -22,9 +22,16 @@ export function sha256(message: string) {
/**
* A faster implementation of [[sha256]] which requires the native Node.js module. Browser consumers should use [[sha256]], instead.
*
* ### Example (es imports)
* ```js
* import { sha256Native as sha256 } from 'typescript-starter'
* sha256('test')
* // => '9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08'
* ```
*
* @returns sha256 message digest
*/
export function sha256Native(message: string) {
export function sha256Native(message: string): string {
return createHash('sha256')
.update(message)
.digest('hex');

View File

@@ -1,10 +1,11 @@
// tslint:disable:no-expression-statement
import { test } from 'ava';
import { double, power } from './number';
test('double', t => {
t.deepEqual(double(2), 4);
t.is(double(2), 4);
});
test('power', t => {
t.deepEqual(power(2, 4), 16);
t.is(power(2, 4), 16);
});

View File

@@ -19,7 +19,7 @@
* @returns Comment describing the return type.
* @anotherNote Some other value.
*/
export function double(value: number) {
export function double(value: number): number {
return value * 2;
}
@@ -40,7 +40,7 @@ export function double(value: number) {
* // => 8
* ```
*/
export function power(base: number, exponent: number) {
export function power(base: number, exponent: number): number {
// This is a proposed es7 operator, which should be transpiled by Typescript
return base ** exponent;
}

8
src/types/cli.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
// We develop typescript-starter with the `strict` compiler option to ensure it
// works out of the box for downstream users. This file is deleted by the CLI,
// so its purpose is just to squelch noImplicitAny errors.
declare module 'github-username';
declare module 'gradient-string';
declare module 'has-ansi';
declare module 'mock-spawn';
declare module 'replace-in-file';

34
src/types/example.d.ts vendored Normal file
View File

@@ -0,0 +1,34 @@
/**
* If you import a dependency which does not include its own type definitions,
* TypeScript will try to find a definition for it by following the `typeRoots`
* compiler option in tsconfig.json. For this project, we've configured it to
* fall back to this folder if nothing is found in node_modules/@types.
*
* Often, you can install the DefinitelyTyped
* (https://github.com/DefinitelyTyped/DefinitelyTyped) type definition for the
* dependency in question. However, if no one has yet contributed definitions
* for the package, you may want to declare your own. (If you're using the
* `noImplicitAny` compiler options, you'll be required to declare it.)
*
* This is an example type definition for the `sha.js` package, used in hash.ts.
*
* (This definition was primarily extracted from:
* https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/v8/index.d.ts
*/
declare module 'sha.js' {
export default function shaJs(algorithm: string): Hash;
type Utf8AsciiLatin1Encoding = 'utf8' | 'ascii' | 'latin1';
type HexBase64Latin1Encoding = 'latin1' | 'hex' | 'base64';
export interface Hash extends NodeJS.ReadWriteStream {
// tslint:disable:no-method-signature
update(
data: string | Buffer | DataView,
inputEncoding?: Utf8AsciiLatin1Encoding
): Hash;
digest(): Buffer;
digest(encoding: HexBase64Latin1Encoding): string;
// tslint:enable:no-method-signature
}
}

View File

@@ -1,400 +0,0 @@
#!/usr/bin/env node
// tslint:disable:no-console
import chalk from 'chalk';
import spawn from 'cross-spawn';
import { existsSync, readFileSync, renameSync, writeFileSync } from 'fs';
import githubUsername from 'github-username';
import gradient from 'gradient-string';
import { prompt } from 'inquirer';
import ora from 'ora';
import { join } from 'path';
import replace from 'replace-in-file';
import sortedObject from 'sorted-object';
import trash from 'trash';
enum ProjectType {
Node,
Library
}
enum Runner {
Npm,
Yarn
}
enum TypeDefinitions {
none,
Node,
DOM,
NodeAndDOM
}
const ascii = `
_ _ _ _ _
| |_ _ _ _ __ ___ ___ ___ _ __(_)_ __ | |_ ___| |_ __ _ _ __| |_ ___ _ __
| __| | | | '_ \\ / _ \\/ __|/ __| '__| | '_ \\| __|____/ __| __/ _\` | '__| __/ _ \\ '__|
| |_| |_| | |_) | __/\\__ \\ (__| | | | |_) | ||_____\\__ \\ || (_| | | | || __/ |
\\__|\\__, | .__/ \\___||___/\\___|_| |_| .__/ \\__| |___/\\__\\__,_|_| \\__\\___|_|
|___/|_| |_|
`;
const repo =
process.env.TYPESCRIPT_STARTER_REPO_URL ||
'https://github.com/bitjson/typescript-starter.git';
(async () => {
if (process.argv.some(a => a === '-v' || a === '--version')) {
console.log(
JSON.parse(readFileSync(`${__dirname}/../../package.json`, 'utf8'))
.version
);
process.exit(0);
}
if (process.stdout.columns && process.stdout.columns >= 85) {
console.log(chalk.bold(gradient.mind(ascii)));
} else {
console.log(`\n${chalk.cyan.bold.underline('typescript-starter')}\n`);
}
const { definitions, description, name, runner } = await collectOptions();
const commitHash = await cloneRepo(name);
const nodeDefinitions = [
TypeDefinitions.Node,
TypeDefinitions.NodeAndDOM
].includes(definitions);
const domDefinitions = [
TypeDefinitions.DOM,
TypeDefinitions.NodeAndDOM
].includes(definitions);
console.log(`${chalk.dim(`Cloned at commit:${commitHash}`)}\n`);
const { gitName, gitEmail } = await getUserInfo();
const username = await githubUsername(gitEmail).catch(err => {
// if username isn't found, just return a placeholder
return 'YOUR_USER_NAME';
});
const spinner1 = ora('Updating package.json').start();
const projectPath = join(process.cwd(), name);
const pkgPath = join(projectPath, 'package.json');
const pkg = readPackageJson(pkgPath);
pkg.name = name;
pkg.version = '1.0.0';
pkg.description = description;
delete pkg.bin;
pkg.repository = `https://github.com/${username}/${name}`;
pkg.keywords = [];
// dependencies to retain for Node.js applications
const nodeKeptDeps = ['sha.js'];
pkg.dependencies = nodeDefinitions
? nodeKeptDeps.reduce((all, dep) => {
all[dep] = pkg.dependencies[dep];
return all;
}, {})
: {};
if (runner === Runner.Yarn) {
pkg.scripts.preinstall = `node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('${name} must be installed with Yarn: https://yarnpkg.com/')\"`;
}
writePackageJson(pkgPath, pkg);
spinner1.succeed();
const spinner2 = ora('Updating .gitignore').start();
if (runner === Runner.Yarn) {
await replace({
files: join(projectPath, '.gitignore'),
from: 'yarn.lock',
to: 'package-lock.json'
});
}
spinner2.succeed();
const spinner3 = ora('Updating .npmignore').start();
await replace({
files: join(projectPath, '.npmignore'),
from: 'examples\n',
to: ''
});
spinner3.succeed();
const spinner4 = ora('Updating LICENSE').start();
await replace({
files: join(projectPath, 'LICENSE'),
from: 'Jason Dreyzehner',
to: gitName
});
spinner4.succeed();
const spinner5 = ora('Deleting unnecessary files').start();
await trash([
join(projectPath, 'examples'),
join(projectPath, 'CHANGELOG.md'),
join(projectPath, 'README.md'),
join(projectPath, 'package-lock.json'),
join(projectPath, 'src', 'typescript-starter.ts')
]);
spinner5.succeed();
const spinner6 = ora('Updating README.md').start();
renameSync(
join(projectPath, 'README-starter.md'),
join(projectPath, 'README.md')
);
await replace({
files: join(projectPath, 'README.md'),
from: 'package-name',
to: name
});
spinner6.succeed();
if (!domDefinitions) {
const spinner6A = ora(`tsconfig: don't include "dom" lib`).start();
await replace({
files: join(projectPath, 'tsconfig.json'),
from: '"lib": ["es2017", "dom"]',
to: '"lib": ["es2017"]'
});
spinner6A.succeed();
}
if (!nodeDefinitions) {
const spinner6B = ora(`tsconfig: don't include "node" types`).start();
await replace({
files: join(projectPath, 'tsconfig.json'),
from: '"types": ["node"]',
to: '"types": []'
});
await replace({
files: join(projectPath, 'src', 'index.ts'),
from: `export * from './lib/hash';\n`,
to: ''
});
await trash([
join(projectPath, 'src', 'lib', 'hash.ts'),
join(projectPath, 'src', 'lib', 'hash.spec.ts'),
join(projectPath, 'src', 'lib', 'async.ts'),
join(projectPath, 'src', 'lib', 'async.spec.ts')
]);
spinner6B.succeed();
}
console.log(`\n${chalk.green.bold('Installing dependencies...')}\n`);
await install(runner, projectPath);
console.log();
const spinner7 = ora(`Initializing git repository`).start();
await initialCommit(commitHash, projectPath);
spinner7.succeed();
console.log(`\n${chalk.blue.bold(`Created ${name} 🎉`)}\n`);
// TODO:
// readme: add how to work on this file
// `npm link`, `npm run watch`, and in a test directory `TYPESCRIPT_STARTER_REPO_URL='/local/path/to/typescript-starter' typescript-starter`
})();
async function collectOptions() {
const packageName = {
filter: (answer: string) => answer.trim(),
message: 'Enter the new package name:',
name: 'name',
type: 'input',
validate: (answer: string) =>
!/^\s*[a-zA-Z]+(-[a-zA-Z]+)*\s*$/.test(answer)
? 'Name should be in-kebab-case'
: existsSync(answer)
? `The ${answer} path already exists in this directory.`
: true
};
const node = 'Node.js application';
const lib = 'Javascript library';
const projectType = {
choices: [node, lib],
filter: val => (val === node ? ProjectType.Node : ProjectType.Library),
message: 'What are you making?',
name: 'type',
type: 'list'
};
const packageDescription = {
filter: answer => answer.trim(),
message: 'Enter the package description:',
name: 'description',
type: 'input',
validate: (answer: string) => answer.length > 0
};
const runnerChoices = ['npm', 'yarn'];
const runner = {
choices: runnerChoices,
filter: val => runnerChoices.indexOf(val),
message: 'Will this project use npm or yarn?',
name: 'runner',
type: 'list'
};
const typeDefChoices = [
`None — the library won't use any globals or modules from Node.js or the DOM`,
`Node.js — parts of the library require access to Node.js globals or built-in modules`,
`DOM — parts of the library require access to the Document Object Model (DOM)`,
`Both Node.js and DOM — some parts of the library require Node.js, other parts require DOM access`
];
const typeDefs = {
choices: typeDefChoices,
filter: val => typeDefChoices.indexOf(val),
message: 'Which global type definitions do you want to include?',
name: 'definitions',
type: 'list',
when: answers => answers.type === ProjectType.Library
};
return (prompt([
packageName,
projectType,
packageDescription,
runner,
typeDefs
]) as Promise<{
name: string;
type: ProjectType;
description: string;
runner: Runner;
definitions?: TypeDefinitions;
}>).then(answers => {
return {
definitions:
answers.definitions === undefined
? TypeDefinitions.Node
: answers.definitions,
description: answers.description,
name: answers.name,
runner: answers.runner,
type: answers.type
};
});
}
async function cloneRepo(dir: string) {
console.log();
const cwd = process.cwd();
const projectDir = join(cwd, dir);
const gitHistoryDir = join(projectDir, '.git');
const clone = spawn.sync('git', ['clone', '--depth=1', repo, dir], {
cwd,
stdio: 'inherit'
});
if (clone.error && clone.error.code === 'ENOENT') {
console.error(
chalk.red(
`\nGit is not installed on your PATH. Please install Git and try again.`
)
);
console.log(
chalk.dim(
`\nFor more information, visit: ${chalk.bold.underline(
'https://git-scm.com/book/en/v2/Getting-Started-Installing-Git'
)}\n`
)
);
process.exit(1);
} else if (clone.status !== 0) {
abort(chalk.red(`Git clone failed. Correct the issue and try again.`));
}
console.log();
const revParse = spawn.sync('git', ['rev-parse', 'HEAD'], {
cwd: projectDir,
encoding: 'utf8',
stdio: ['pipe', 'pipe', process.stderr]
});
if (revParse.status !== 0) {
abort(chalk.red(`Git rev-parse failed.`));
}
const commitHash = revParse.stdout.trim();
await trash([gitHistoryDir]);
return commitHash;
}
async function getUserInfo() {
const gitNameProc = spawn.sync('git', ['config', 'user.name'], {
encoding: 'utf8',
stdio: ['pipe', 'pipe', process.stderr]
});
if (gitNameProc.status !== 0) {
abort(chalk.red(`Couldn't get name from Git config.`));
}
const gitName = gitNameProc.stdout.trim();
const gitEmailProc = spawn.sync('git', ['config', 'user.email'], {
encoding: 'utf8',
stdio: ['pipe', 'pipe', process.stderr]
});
if (gitEmailProc.status !== 0) {
abort(chalk.red(`Couldn't get email from Git config.`));
}
const gitEmail = gitEmailProc.stdout.trim();
return {
gitEmail,
gitName
};
}
function readPackageJson(path: string) {
return JSON.parse(readFileSync(path, 'utf8'));
}
function writePackageJson(path: string, pkg: any) {
// write using the same format as npm:
// https://github.com/npm/npm/blob/latest/lib/install/update-package-json.js#L48
const stringified = JSON.stringify(pkg, null, 2) + '\n';
writeFileSync(path, stringified);
}
async function install(runner: Runner, projectDir: string) {
const opts = {
cwd: projectDir,
encoding: 'utf8',
stdio: ['inherit', 'inherit', process.stderr]
};
const runnerProc =
runner === Runner.Npm
? spawn.sync('npm', ['install'], opts)
: spawn.sync('yarn', opts);
if (runnerProc.status !== 0) {
abort(chalk.red(`Installation failed. You'll need to install manually.`));
}
}
async function initialCommit(hash: string, projectDir: string) {
const opts = {
cwd: projectDir,
encoding: 'utf8',
stdio: ['ignore', 'ignore', process.stderr]
};
const init = spawn.sync('git', ['init'], opts);
if (init.status !== 0) {
abort(chalk.red(`Git repo initialization failed.`));
}
const add = spawn.sync('git', ['add', '-A'], opts);
if (add.status !== 0) {
abort(chalk.red(`Could not stage initial commit.`));
}
const commit = spawn.sync(
'git',
[
'commit',
'-m',
`Initial commit\n\nCreated with typescript-starter@${hash}`
],
opts
);
if (commit.status !== 0) {
abort(chalk.red(`Initial commit failed.`));
}
}
function abort(msg: string) {
console.error(`\n${msg}\n`);
process.exit(1);
}

View File

@@ -9,12 +9,9 @@
"inlineSourceMap": true,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
/* Experimental Options */
// "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
// "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
"strict": true /* Enable all strict type-checking options. */,
/* Strict Type-Checking Options */
// "strict": true /* Enable all strict type-checking options. */,
// "noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
// "strictNullChecks": true /* Enable strict null checks. */,
// "strictFunctionTypes": true /* Enable strict checking of function types. */,
@@ -23,10 +20,10 @@
// "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
/* Additional Checks */
// "noUnusedLocals": true /* Report errors on unused locals. */,
// "noUnusedParameters": true /* Report errors on unused parameters. */,
// "noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
// "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
"noUnusedLocals": true /* Report errors on unused locals. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
/* Debugging Options */
"traceResolution": false /* Report module resolution log messages. */,
@@ -34,8 +31,13 @@
"listFiles": false /* Print names of files part of the compilation. */,
"pretty": true /* Stylize errors and messages using color and context. */,
/* Experimental Options */
// "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
// "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
"lib": ["es2017", "dom"],
"types": ["node"]
"types": ["node"],
"typeRoots": ["node_modules/@types", "src/types"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules/**"],

View File

@@ -1,7 +1,14 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"target": "esnext",
"outDir": "build/module",
"module": "ESNext"
}
"module": "esnext"
},
"exclude": [
"node_modules/**",
// typescript-starter: exclude CLI from module build, since it's exclusively
// for Node.js. (This should also be stripped from the generated project.)
"src/cli/**/*.ts"
]
}

View File

@@ -1,9 +1,34 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"extends": ["tslint:latest", "tslint-config-prettier", "tslint-immutable"],
"rules": {
"interface-name": [true, "never-prefix"],
// TODO: allow devDependencies only in **/*.spec.ts files:
// https://github.com/palantir/tslint/pull/3708
"no-implicit-dependencies": [true, "dev"]
// waiting on https://github.com/palantir/tslint/pull/3708
"no-implicit-dependencies": [true, "dev"],
/* tslint-immutable rules */
// Recommended built-in rules
"no-var-keyword": true,
"no-parameter-reassignment": true,
"typedef": [true, "call-signature"],
// Immutability rules
"readonly-keyword": true,
"readonly-array": true,
"no-let": true,
"no-object-mutation": true,
"no-delete": true,
"no-method-signature": true,
// Functional style rules
"no-this": true,
"no-class": true,
"no-mixed-interface": true,
"no-expression-statement": [
true,
{ "ignore-prefix": ["console.", "process.exit"] }
],
"no-if-statement": true
/* end tslint-immutable rules */
}
}