pareto-fountain-pen 0.1.35 → 0.1.37

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.
Files changed (30) hide show
  1. package/dist/exceptional/serialize/block.d.ts +5 -0
  2. package/dist/{serialize → exceptional/serialize}/block.js +6 -6
  3. package/dist/{serialize → exceptional/serialize}/semi_lines.d.ts +2 -2
  4. package/dist/{serialize → exceptional/serialize}/semi_lines.js +3 -3
  5. package/dist/generated/implementation/schemas/block/marshall.d.ts +2 -2
  6. package/dist/generated/implementation/schemas/block/marshall.js +16 -16
  7. package/dist/generated/implementation/schemas/block/unmarshall.d.ts +2 -2
  8. package/dist/generated/implementation/schemas/block/unmarshall.js +17 -17
  9. package/dist/generated/interface/schemas/block/data_types/source.d.ts +40 -40
  10. package/dist/generated/interface/schemas/block/data_types/target.d.ts +40 -40
  11. package/dist/generated/interface/schemas/block/marshall.d.ts +17 -17
  12. package/dist/generated/interface/schemas/block/migrate_boilerplate.d.ts +22 -22
  13. package/dist/generated/interface/schemas/block/unmarshall.d.ts +20 -20
  14. package/dist/procedures/console_error.d.ts +1 -1
  15. package/dist/procedures/console_error.js +1 -1
  16. package/dist/procedures/console_log.d.ts +1 -1
  17. package/dist/procedures/console_log.js +1 -1
  18. package/dist/procedures/temp_types.d.ts +6 -4
  19. package/dist/procedures/write_to_directory.js +1 -1
  20. package/dist/procedures/write_to_file.js +3 -3
  21. package/dist/procedures/write_to_node.js +1 -1
  22. package/dist/shorthands/block.d.ts +9 -9
  23. package/dist/shorthands/block.js +11 -11
  24. package/dist/transformations/block/lines.d.ts +1 -1
  25. package/dist/transformations/block/lines.js +4 -4
  26. package/dist/transformations/block/semi_lines.d.ts +1 -1
  27. package/dist/transformations/block/semi_lines.js +12 -12
  28. package/dist/transformations/semi_lines/lines.js +2 -2
  29. package/package.json +3 -3
  30. package/dist/serialize/block.d.ts +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-fountain-pen",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "description": "A TypeScript library for easily generating source code files with proper indentation in the pareto programming style/language",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "exupery-core-bin": "^0.1.18",
42
42
  "exupery-core-data": "^0.1.11",
43
43
  "exupery-core-dev": "^0.1.3",
44
- "exupery-resources": "^0.1.13",
45
- "pareto-standard-operations": "^0.1.14"
44
+ "exupery-resources": "^0.1.17",
45
+ "pareto-standard-operations": "^0.1.15"
46
46
  }
47
47
  }
@@ -1,5 +0,0 @@
1
- import * as _in from "../generated/interface/schemas/block/data_types/source";
2
- export declare const Block: ($: _in.Block, $p: {
3
- "indentation": string;
4
- "newline": string;
5
- }) => string;