@agilewallaby/c4-model 1.0.0 → 1.0.2

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.
@@ -9,6 +9,11 @@ Currently supported output formats are:
9
9
  static views are supported, e.g. system landscape, system context, container, and component diagrams.
10
10
  Deployment and dynamic diagrams may be supported in the future.
11
11
 
12
+ Other formats that may be supported in the future:
13
+
14
+ * The [YAML format](https://backstage.io/docs/features/software-catalog/descriptor-format) specified by
15
+ [Spotify Backstage](https://backstage.io/) for documenting systems in the [Software Catalog](https://backstage.io/docs/features/software-catalog/).
16
+
12
17
  ## Usage
13
18
 
14
19
  The core of this library is the `Model` class. From here you can 'define' instances of `SoftwareSystem`
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@agilewallaby/c4-model",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/AgileWallaby/c4.git"
10
+ },
7
11
  "dependencies": {
8
12
  "tslib": "^2.3.0"
9
13
  },
package/src/index.d.ts CHANGED
@@ -1 +1,3 @@
1
1
  export * from './lib/model';
2
+ export * from './lib/views';
3
+ export * from './lib/structurizrDslWriter';
package/src/index.js CHANGED
@@ -2,4 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./lib/model"), exports);
5
+ tslib_1.__exportStar(require("./lib/views"), exports);
6
+ tslib_1.__exportStar(require("./lib/structurizrDslWriter"), exports);
5
7
  //# sourceMappingURL=index.js.map
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/c4-model/src/index.ts"],"names":[],"mappings":";;;AAAA,sDAA4B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/c4-model/src/index.ts"],"names":[],"mappings":";;;AAAA,sDAA2B;AAC3B,sDAA2B;AAC3B,qEAA0C"}