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: aliok/Proto2TypeScript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: sopepos/Proto2TypeScript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 14 files changed
  • 1 contributor

Commits on Jan 8, 2018

  1. Support protobufjs 6.x json format

    - supports new json format **ONLY**.
    
    - changed options:
      added "--noCreate"
      added "-m", "--moduleName"
      deleted "c", "u", "p"
    
    - rewritten in es6
    
    - package.json:
      - upgraded protobufjs to 6.8.4 (latest)
      - upgraded dustjs to 2.7.5 (latest)
      - changed optimist to yargs
      - removed vinyl-file
      - added lodash
    sopepos committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    67b774a View commit details
    Browse the repository at this point in the history
  2. Remove unused files

    sopepos committed Jan 8, 2018
    Configuration menu
    Copy the full SHA
    f2e21da View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2018

  1. eslint: Add mocha env

    sopepos committed Jan 9, 2018
    Configuration menu
    Copy the full SHA
    21e22f4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fe8fa50 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    50b7d31 View commit details
    Browse the repository at this point in the history
  4. Add --noCtor, --noCoding, --noInherit options

    "noCtor": Don't generate constructor
    "noCoding": Don't generate encode()/ decode() methods
    "noInherit": Don't inherit Message<T>
    sopepos committed Jan 9, 2018
    Configuration menu
    Copy the full SHA
    5cd49b1 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2018

  1. Edit README

    sopepos committed Nov 20, 2018
    Configuration menu
    Copy the full SHA
    ccea8d4 View commit details
    Browse the repository at this point in the history
  2. Change package name to pbjs2typescript

    * Also update version to 3.0.0
    sopepos committed Nov 20, 2018
    Configuration menu
    Copy the full SHA
    e6521d0 View commit details
    Browse the repository at this point in the history
  3. Update package-lock.json

    sopepos committed Nov 20, 2018
    Configuration menu
    Copy the full SHA
    6c32987 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2018

  1. Can load *.proto file

    Using protobufjs, now can load *.proto file also.
     - rewrote codes and templates with protobufjs
     - "-f", "--file" options can load *.json or *.proto
    
    - version: updated to 4.0.0
    
    - options:
     - removed: -m, --moduleName options
     - added: --bytes option
      - "--bytes": Set type name of "bytes" field. (default: Uint8Array)
    
    - fixed property type name of interface
     - in interface, if type of property is "message", now correctly
       specifies the message interface name, not message class name
     - e.g. field1: Protocols.IPerson;
    
    - fixed optional field
     - if message field is "optional", makes optional property correctly.
     - e.g. field2?: string;
    sopepos committed Nov 29, 2018
    Configuration menu
    Copy the full SHA
    8b1c482 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2018

  1. Update README

    sopepos committed Dec 4, 2018
    Configuration menu
    Copy the full SHA
    76ff9f9 View commit details
    Browse the repository at this point in the history
Loading