Граф коммитов

157 Коммитов

Автор SHA1 Сообщение Дата
Tsvetomir Tsonev 184255e725 chore: read tokens from Akeyeless 2023-05-18 17:39:32 +03:00
semantic-release-bot f8185077e2 chore(release): 1.0.1 [skip ci]
## [1.0.1](https://github.com/telerik/dss/compare/v1.0.0...v1.0.1) (2021-03-02)

### Bug Fixes

* reduce bundle size by using only lodash.has instead of full lodash ([a81f1db](a81f1dbca6))
* update license ([5fce8e9](5fce8e9614))
2021-03-02 15:21:05 +00:00
joneff a81f1dbca6 fix: reduce bundle size by using only lodash.has instead of full lodash 2021-03-02 17:17:52 +02:00
joneff 2c440d27da chore: add npmignore 2021-03-02 17:17:52 +02:00
joneff 5fce8e9614 fix: update license 2021-03-02 17:17:52 +02:00
semantic-release-bot 2f51e06a5a chore(release): 1.0.0 [skip ci]
# 1.0.0 (2021-03-01)

### Bug Fixes

* **parsing:** allow usage of '@' in blocks ([827ca61](827ca613f2))

### Features

* initial release from fork ([094ad94](094ad94fa7))
* **aliases:** add markup alias for example parser ([8096a53](8096a533a9))
* **aliases:** add return alias for returns parser ([2f9b1dc](2f9b1dc1ef))
* **comments:** add support for JavaDoc blocks parsing ([3d13d87](3d13d87d61))
* **parse:** add next line key and type to the output object ([c90f944](c90f9446d4))
* **parsers:** add param and return parsers for JSDoc like data ([b46e7f3](b46e7f3abb))
* **parsers:** add several parsers ([3d5dec0](3d5dec011b))
* **parsers:** allow multi-line description comments ([e609609](e609609420))
* **parsers:** allow usage of multiple example annotations ([50de3f5](50de3f5094))
* **parsers:** extract multiline parser logic from markup ([64b991e](64b991e3bf))
* **parsers:** parse example type ([20d2478](20d2478e7b))
* **parsers:** use latest JSDoc syntax for param and returs annotations ([36203e3](36203e3fef))
* **parsing:** allow parsing description without annotation ([99e711f](99e711f1a3))
* **parsing:** use triple slash single line comments ([081d1fc](081d1fc62b))
2021-03-01 14:02:19 +00:00
joneff 094ad94fa7 feat: initial release from fork 2021-03-01 15:59:52 +02:00
PreslavKozovski 1c987be8fe chore: add vscode launch.json for easier debugging 2021-02-11 15:05:29 +02:00
PreslavKozovski 8096a533a9 feat(aliases): add markup alias for example parser 2021-02-11 14:32:49 +02:00
PreslavKozovski fb58becce3 docs: update README 2021-02-11 14:18:40 +02:00
PreslavKozovski 96f99ea9d0 refactor: use startsWith for getKeyType 2021-02-10 19:41:29 +02:00
PreslavKozovski 99e711f1a3 feat(parsing): allow parsing description without annotation 2021-02-10 19:39:04 +02:00
PreslavKozovski 20d2478e7b feat(parsers): parse example type 2021-02-10 17:32:07 +02:00
PreslavKozovski 50de3f5094 feat(parsers): allow usage of multiple example annotations 2021-02-10 15:01:40 +02:00
PreslavKozovski 04a154b9d3 style: fix JSDoc comments spacings 2021-02-10 14:16:39 +02:00
PreslavKozovski 2f9b1dc1ef feat(aliases): add return alias for returns parser 2021-02-10 14:10:37 +02:00
PreslavKozovski 9e94233581 refactor: change markup parser name to example 2021-02-10 12:50:22 +02:00
PreslavKozovski fde3fa147c test: add Key parser to all-annotations test 2021-02-08 18:54:40 +02:00
PreslavKozovski 46754efbc8 docs: update README Basic Usage example 2021-02-08 18:51:26 +02:00
PreslavKozovski 1a63856253 refactor: use arrow functions in tests 2021-02-08 18:48:17 +02:00
PreslavKozovski e5bd284628 docs: update README 2021-02-08 18:47:43 +02:00
PreslavKozovski 3d13d87d61 feat(comments): add support for JavaDoc blocks parsing 2021-02-08 17:25:47 +02:00
PreslavKozovski 36203e3fef feat(parsers): use latest JSDoc syntax for param and returs annotations 2021-02-08 15:27:26 +02:00
PreslavKozovski 11e3e8e09f style(docs): update JSDocs 2021-02-05 14:45:16 +02:00
PreslavKozovski b46e7f3abb feat(parsers): add param and return parsers for JSDoc like data 2021-02-05 12:31:55 +02:00
PreslavKozovski 78987021b6 chore: update playground 2021-02-05 12:30:21 +02:00
PreslavKozovski 827ca613f2 fix(parsing): allow usage of '@' in blocks 2021-02-05 11:37:10 +02:00
PreslavKozovski 40faa1753b refactor(getkey): use map for the regexes 2021-02-05 10:57:40 +02:00
PreslavKozovski 5459e66e6c style: switch doc comments syntax to JSDoc3 2021-02-05 10:53:37 +02:00
PreslavKozovski c90f9446d4 feat(parse): add next line key and type to the output object 2021-02-04 19:02:47 +02:00
PreslavKozovski 01d6ab2f01 chore: update playground 2021-02-04 18:17:28 +02:00
PreslavKozovski f597ffceac chore: add commitlint and husky 2021-02-03 18:13:30 +02:00
PreslavKozovski 3d5dec011b feat(parsers): add several parsers
1. deprecated - version;
2. deprecatedDescription - reasoning behind deprecation;
3. group - group name
4. type - sass variable type
5. subtype - custom subtype
2021-02-03 18:02:47 +02:00
PreslavKozovski e609609420 feat(parsers): allow multi-line description comments 2021-02-03 17:41:23 +02:00
PreslavKozovski 64b991e3bf feat(parsers): extract multiline parser logic from markup 2021-02-03 16:55:18 +02:00
PreslavKozovski 081d1fc62b feat(parsing): use triple slash single line comments 2021-02-03 14:14:04 +02:00
PreslavKozovski 25d0a140b7 chore: add playground 2021-02-03 14:12:47 +02:00
PreslavKozovski cd74cfa66a chore: fix eslint errors 2021-02-03 13:13:23 +02:00
PreslavKozovski c035e1707a chore: add editor config 2021-02-02 19:05:24 +02:00
PreslavKozovski e057f73a8e chore: add eslint 2021-02-02 19:04:22 +02:00
PreslavKozovski d8b9b19e82 chore: add mocha tests 2021-02-02 18:59:02 +02:00
Darcy Clarke 8cca9eb121 Update readme broken javascript syntax highlighting 2015-05-05 17:20:20 -04:00
Darcy Clarke ba93ff84db Update readme 2015-05-05 17:19:19 -04:00
Darcy Clarke 537ddd7fb1 Add modification to return an array when only one state is defined 2015-05-05 16:36:01 -04:00
Darcy Clarke c0da818e2a Merge pull request #64 from darcyclarke/cleanup
Cleanup
2015-05-05 12:23:31 -04:00
Darcy Clarke f5e5ffba50 Cleaned up syntax 2015-05-05 12:22:24 -04:00
Darcy Clarke f4fd473d66 temp 2015-05-04 22:47:45 -04:00
Darcy Clarke 47bcee4a3d Prevent string comparison from failing when using non-strict equality 2015-05-04 22:37:36 -04:00
Darcy Clarke 5ca4e07a2b Update readme with npm stats 2015-05-04 22:34:21 -04:00
Darcy Clarke 403af13a4d Merge pull request #59 from ahx/alias-parser
Add DSS.alias(newName, oldName) to alias a parser.
2015-05-04 22:32:04 -04:00