├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .mailmap ├── .prettierignore ├── .prettierrc.js ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── appveyor.yml ├── package.json ├── tasks └── ng-annotate.js └── test ├── .eslintrc.json ├── fixtures ├── annotated-es6.js ├── annotated-messy.js ├── annotated-regexp.js ├── annotated-single.js ├── annotated.js ├── concatenated-separator.js ├── concatenated.js ├── multiple-1.js ├── multiple-2.js ├── not-annotated-es6.js ├── not-annotated.js └── partially-annotated-messy.js └── spec └── api.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.mailmap -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/package.json -------------------------------------------------------------------------------- /tasks/ng-annotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/tasks/ng-annotate.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/fixtures/annotated-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/annotated-es6.js -------------------------------------------------------------------------------- /test/fixtures/annotated-messy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/annotated-messy.js -------------------------------------------------------------------------------- /test/fixtures/annotated-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/annotated-regexp.js -------------------------------------------------------------------------------- /test/fixtures/annotated-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/annotated-single.js -------------------------------------------------------------------------------- /test/fixtures/annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/annotated.js -------------------------------------------------------------------------------- /test/fixtures/concatenated-separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/concatenated-separator.js -------------------------------------------------------------------------------- /test/fixtures/concatenated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/concatenated.js -------------------------------------------------------------------------------- /test/fixtures/multiple-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/multiple-1.js -------------------------------------------------------------------------------- /test/fixtures/multiple-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/multiple-2.js -------------------------------------------------------------------------------- /test/fixtures/not-annotated-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/not-annotated-es6.js -------------------------------------------------------------------------------- /test/fixtures/not-annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/not-annotated.js -------------------------------------------------------------------------------- /test/fixtures/partially-annotated-messy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/fixtures/partially-annotated-messy.js -------------------------------------------------------------------------------- /test/spec/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgol/grunt-ng-annotate/HEAD/test/spec/api.js --------------------------------------------------------------------------------