@travetto/transformer 2.0.4 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@travetto/transformer",
3
3
  "displayName": "Transformation",
4
- "version": "2.0.4",
4
+ "version": "2.1.0",
5
5
  "description": "Functionality for AST transformations, with transformer registration, and general utils",
6
6
  "keywords": [
7
7
  "typescript",
@@ -25,7 +25,7 @@
25
25
  "directory": "module/transformer"
26
26
  },
27
27
  "dependencies": {
28
- "@travetto/base": "^2.0.2"
28
+ "@travetto/base": "^2.1.0"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"
@@ -63,9 +63,9 @@ export class DeclarationUtil {
63
63
 
64
64
  /**
65
65
  * Get accessor pair based off of passing in one in
66
- *
67
- * @param node
68
- * @returns
66
+ *
67
+ * @param node
68
+ * @returns
69
69
  */
70
70
  static getAccessorPair(node: ts.GetAccessorDeclaration | ts.SetAccessorDeclaration) {
71
71
  const acc = { getter: ts.isGetAccessorDeclaration(node) ? node : undefined, setter: ts.isSetAccessorDeclaration(node) ? node : undefined };