Socket
Socket
Sign inDemoInstall

dgeni-packages

Package Overview
Dependencies
Maintainers
1
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dgeni-packages - npm Package Versions

1
15

0.13.0

Diff

Changelog

Source

v0.13.0 12 May 2016

  • fix(jsdoc/access): refactor access tags and transforms to allow more configuration 70cd0bea
  • fix(typescript/createCompilerHost): fix syntax errors ae47de91
  • refactor(jsdoc/codename): add service, made matchers pluggable 28dc7919
  • fix(restrict): Change default from 'A' to 'EA'. e0e6a501
  • fix(jsdoc/extract-tags): don't write properties if tag values are undefined 3eade6bc

BREAKING CHANGES

  • Due to 3eade6bc Tags that had a value of undefined are no longer written to the document. If you relied upon such falsy values forcing keys onto the doc, then change your tagDefs to return null instead.

  • Due to e0e6a501 If you don't provide a value for the @restrict tag it now defaults to EA rather than just A. If you want your directives to be only A then you must provide a @restrict tag for them.

  • Due to 70cd0bea The way that you configure extractAccessTransform has changed. If you were creating your own access tags then you must use the new API.

    Previously:

    module.exports = function(accessTagTransform) {
      var name = 'private';
    
      accessTagTransform.addTag(name);
      accessTagTransform.addValue(name);
    
      function getValue () {
        return name;
      }
    
      return {
        name: name,
        docProperty: 'access',
        transforms: [getValue, accessTagTransform]
      };
    };
    

    Now:

    module.exports = function(extractTypeTransform, extractAccessTransform) {
      extractAccessTransform.allowedTags.set('private');
      return {
        name: 'private',
        transforms: [extractTypeTransform, extractAccessTransform]
      };
    };
    
petebd
published 0.12.0 •

Changelog

Source

v0.12.0 3 April 2016

Features

  • feat(typescript): add package to parse exports from TypeScript modules 3e07adee
  • feat(jsdoc): add support for @access, @private, @protected, @public tags e87f61f3
  • feat(ngdoc): add knownIssues tag and processing b590d058

Fixes

  • fix(jsdoc): only declare private tagDef once 04b6e08e
  • fix(git): allow non-github repository URLs afc213cc
  • fix(examples): don't error if the doc has no content 2944e203
  • fix(ngdoc/api.template): use link filter for module link 4f4ab7ef
  • fix(code-name): add support for MethodDefinition, ArrowFunctionExpression nodes cf2c28bf
  • fix(git/versionInfo): don't throw error if there is no valid codename d749314c
petebd
published 0.11.1 •

Changelog

Source

v0.11.1 7 November 2015

  • fix(jsdoc/inline-tags): don't conflate successive inline tags when matching 67c2abf5
  • feat(jsdoc): add license tag 6f4bb5f7
  • feat(docs): improve templates and add npm script for generating docs 3c75243e
  • feat(dgeni): compute the full pipeline of processors for each package and add index page c12cd9ec
petebd
published 0.11.0 •

Changelog

Source

v0.11.0 31 October 2015

ES6 Support:

  • fix(code-name): update espree, estraverse and add support for ExportDefaultDeclaration Yair Leviel 080620c2
  • fix(jsdoc/jsParser): support parsing ES6 features Peter Bacon Darwin c14c18ce

Dgeni self-documentation:

  • feat(docs): initial dgeni doc-gen package Peter Bacon Darwin 603e333e
  • feat(docs): initial dgeni doc-gen package Peter Bacon Darwin 8c176e53
  • feat(dgeni): add dgeni configuration documentation processing Peter Bacon Darwin 0f4f5dd4

Links package:

  • feat(links): initial links package, abstracted from the ngdoc package Peter Bacon Darwin 94271a1a

Start-End Inline Tags

  • feat(inline-tags): allow start-end tags Peter Bacon Darwin 362a3495

Bug Fixes

  • fix(versionInfo): don't crash if no codename match is found Peter Bacon Darwin 069c7762
  • fix(jsdoc) file-readers assignment via concat Matt Fairbrass c6af7204
petebd
published 0.10.19 •

Changelog

Source

v0.10.19 23 August 2015

  • fix(ngdoc/templates): move module installation above description 6f7b0fc3
petebd
published 0.10.18 •

Changelog

Source

v0.10.18 10 July 2015

  • fix(jsdoc/private tagdef): assign true to private property if tag is found 640d3da6
petebd
published 0.10.17 •

Changelog

Source

v0.10.17 23 June 2015

  • fix(git/api.template): remove weird character in folder name 3ad11ff1
petebd
published 0.10.16 •

Changelog

Source

v0.10.16 22 June 2015

  • fix(ngdoc): remove git package as a dependency f0647968
  • fix(git/packageInfo): ensure that we return consistent paths on all OSes 4e29bb62
petebd
published 0.10.15 •

Changelog

Source

v0.10.15 21 June 2015

  • feat(git): add git information package 81944685
  • fix(ngdoc/templates/lib/events): add event params 860dce98
  • fix(extractTypeTransform): support record types 32b269aa
  • feat(ngdoc/multiElement tag): directives can declare that they support multiElement 41d583f8
petebd
published 0.10.14 •

Changelog

Source

v0.10.14 11th June 2015

  • fix(checkAnchorLinks): add decodeURIComponent call when checking for dangling links d5ed516b
  • feat(ngdoc/getLinkInfo): add option to make links relative 7178e9eb
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc