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: yu-ogi/pack-image
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.0
Choose a base ref
...
head repository: yu-ogi/pack-image
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Aug 26, 2019

  1. Copy the full SHA
    a06c4f0 View commit details

Commits on Aug 28, 2019

  1. Copy the full SHA
    085a6d7 View commit details

Commits on Aug 30, 2019

  1. Copy the full SHA
    86bbb05 View commit details
  2. Copy the full SHA
    133b0ad View commit details

Commits on Sep 2, 2019

  1. Merge pull request #10 from yu-ogi/renovate/maxrects-packer-2.x

    Update dependency maxrects-packer to v2.4.5
    yu-ogi authored Sep 2, 2019
    Copy the full SHA
    3701b41 View commit details
  2. Merge pull request #11 from yu-ogi/renovate/typescript-3.x

    Update dependency typescript to v3.6.2
    yu-ogi authored Sep 2, 2019
    Copy the full SHA
    bac2f5e View commit details
  3. Merge pull request #12 from yu-ogi/renovate/node-12.x

    Update dependency @types/node to v12.7.3
    yu-ogi authored Sep 2, 2019
    Copy the full SHA
    ebebec8 View commit details
  4. Merge pull request #13 from yu-ogi/renovate/commander-3.x

    Update dependency commander to v3.0.1
    yu-ogi authored Sep 2, 2019
    Copy the full SHA
    55174a0 View commit details

Commits on Sep 3, 2019

  1. Copy the full SHA
    bff3833 View commit details

Commits on Sep 5, 2019

  1. Merge pull request #15 from yu-ogi/renovate/node-12.x

    Update dependency @types/node to v12.7.4
    yu-ogi authored Sep 5, 2019
    Copy the full SHA
    702a7db View commit details

Commits on Nov 8, 2019

  1. Refactor

    yu-ogi committed Nov 8, 2019
    Copy the full SHA
    f37f7e3 View commit details
  2. Fix spec

    yu-ogi committed Nov 8, 2019
    Copy the full SHA
    df9eb83 View commit details
  3. Agg .gitignore in spec

    yu-ogi committed Nov 8, 2019
    Copy the full SHA
    a4e779c View commit details
  4. Copy the full SHA
    5cac157 View commit details
  5. Merge pull request #22 from yu-ogi/renovate/pin-dependencies

    Pin dependency @types/pngjs to 3.3.2
    yu-ogi authored Nov 8, 2019
    Copy the full SHA
    5513ef9 View commit details
  6. version 1.0.0

    yu-ogi committed Nov 8, 2019
    Copy the full SHA
    2224dc1 View commit details
  7. Copy the full SHA
    d40db7d View commit details

Commits on Nov 9, 2019

  1. Merge pull request #23 from yu-ogi/renovate/node-12.x

    Update dependency @types/node to v12.12.7
    yu-ogi authored Nov 9, 2019
    Copy the full SHA
    6c0dc21 View commit details

Commits on Nov 13, 2019

  1. Copy the full SHA
    bd8cc3d View commit details
  2. Copy the full SHA
    7c147ee View commit details
  3. Copy the full SHA
    06cb163 View commit details
  4. Copy the full SHA
    cad9acc View commit details
  5. Merge pull request #26 from yu-ogi/renovate/jest-24.x

    Update dependency @types/jest to v24.0.23
    yu-ogi authored Nov 13, 2019
    Copy the full SHA
    92145fa View commit details
  6. Merge pull request #25 from yu-ogi/renovate/pngjs-3.x

    Update dependency @types/pngjs to v3.4.0
    yu-ogi authored Nov 13, 2019
    Copy the full SHA
    19ef27d View commit details
  7. Merge pull request #24 from yu-ogi/renovate/commander-4.x

    Update dependency commander to v4.0.1
    yu-ogi authored Nov 13, 2019
    Copy the full SHA
    ea26b98 View commit details
  8. version 1.1.0

    yu-ogi committed Nov 13, 2019
    Copy the full SHA
    6729205 View commit details

Commits on Nov 19, 2019

  1. Copy the full SHA
    16f279a View commit details

Commits on Nov 21, 2019

  1. Merge pull request #27 from yu-ogi/renovate/node-12.x

    Update dependency @types/node to v12.12.11
    yu-ogi authored Nov 21, 2019
    Copy the full SHA
    cdd1474 View commit details
Showing with 602 additions and 849 deletions.
  1. +4 −9 .travis.yml
  2. +390 −660 package-lock.json
  3. +10 −9 package.json
  4. +15 −6 src/ImageData.ts
  5. +1 −0 src/__tests__/.gitignore
  6. +50 −34 src/__tests__/cli_spec.ts
  7. +1 −0 src/__tests__/fixtures/.gitignore
  8. +0 −2 src/__tests__/tmp/.gitignore
  9. +0 −24 src/checkInputImages.ts
  10. +65 −35 src/cli.ts
  11. +0 −64 src/createSprite.ts
  12. +7 −5 src/parameters.ts
  13. +58 −0 src/png.ts
  14. +1 −1 src/utils.ts
13 changes: 4 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
language: node_js
node_js:
- 11
- 10
- 12
os:
- linux
- osx
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- windows
script:
- npm install
- npm test
Loading