Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: HT2-Labs/typescript-project
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.12
Choose a base ref
...
head repository: HT2-Labs/typescript-project
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.13
Choose a head ref

Commits on Nov 5, 2018

  1. Copy the full SHA
    a305ab2 View commit details

Commits on Nov 6, 2018

  1. Copy the full SHA
    65f2639 View commit details

Commits on Nov 7, 2018

  1. Copy the full SHA
    600fd90 View commit details
  2. Copy the full SHA
    b0e20ea View commit details

Commits on Nov 8, 2018

  1. Copy the full SHA
    a15f34f View commit details

Commits on Nov 9, 2018

  1. Copy the full SHA
    c52df0b View commit details
  2. Copy the full SHA
    c0bec18 View commit details
  3. Copy the full SHA
    6c9c952 View commit details

Commits on Nov 10, 2018

  1. Copy the full SHA
    99e3b11 View commit details

Commits on Nov 11, 2018

  1. Copy the full SHA
    a7a3768 View commit details

Commits on Nov 12, 2018

  1. Copy the full SHA
    88fd559 View commit details

Commits on Nov 13, 2018

  1. Copy the full SHA
    a32a1c5 View commit details

Commits on Nov 14, 2018

  1. Copy the full SHA
    b04f0ed View commit details
  2. Copy the full SHA
    7595e50 View commit details
  3. Copy the full SHA
    12959fb View commit details

Commits on Nov 15, 2018

  1. Copy the full SHA
    568b62c View commit details

Commits on Nov 16, 2018

  1. Copy the full SHA
    d22d3fe View commit details

Commits on Nov 17, 2018

  1. Copy the full SHA
    febfd99 View commit details

Commits on Nov 18, 2018

  1. Copy the full SHA
    4111395 View commit details

Commits on Nov 19, 2018

  1. Copy the full SHA
    edb4cc1 View commit details
  2. Copy the full SHA
    4397f2c View commit details

Commits on Nov 20, 2018

  1. Copy the full SHA
    bc820f8 View commit details

Commits on Nov 21, 2018

  1. Copy the full SHA
    b74432d View commit details
  2. Copy the full SHA
    665e088 View commit details
  3. Copy the full SHA
    c9fd077 View commit details

Commits on Nov 22, 2018

  1. Copy the full SHA
    0e31221 View commit details
  2. Copy the full SHA
    c450768 View commit details

Commits on Nov 23, 2018

  1. Copy the full SHA
    a90d3d9 View commit details

Commits on Nov 24, 2018

  1. Copy the full SHA
    1b37e6a View commit details

Commits on Nov 25, 2018

  1. Copy the full SHA
    19e35a6 View commit details

Commits on Nov 26, 2018

  1. Copy the full SHA
    80bb31b View commit details
  2. Copy the full SHA
    3b4091d View commit details

Commits on Nov 27, 2018

  1. Copy the full SHA
    02e6656 View commit details
  2. Copy the full SHA
    b314d05 View commit details

Commits on Nov 28, 2018

  1. Copy the full SHA
    8fc077d View commit details
  2. Copy the full SHA
    918d239 View commit details
Showing with 279 additions and 182 deletions.
  1. +1 −1 .circleci/config.yml
  2. +3 −3 configs/tslint.json
  3. +274 −177 package-lock.json
  4. +1 −1 package.json
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ machine:
jobs:
build:
docker:
- image: circleci/node:8@sha256:b1a4abdfe79bd38f3bb4b36eed0c8606a4c25449ec9e57e3504086baf63b1d8b
- image: circleci/node:8@sha256:bf601a478ab2aad9a827b930296048a4d396dd167640e2391d878cf65e97cd24
environment:
- NPM_CONFIG_LOGLEVEL: warn
working_directory: ~/repo
6 changes: 3 additions & 3 deletions configs/tslint.json
Original file line number Diff line number Diff line change
@@ -55,9 +55,9 @@
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-console": [
true
],
"no-console": {
"severity": "warning"
},
"no-construct": false,
"no-debugger": true,
"no-duplicate-super": true,
Loading