nodalis-compiler 1.0.2 → 1.0.3

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/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.3]
9
+
10
+ - Added access to MTICompileList.
11
+
8
12
  ## [1.0.2]
9
13
 
10
14
  - Added deploy action to command line.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodalis-compiler",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Compiles IEC-61131-3/10 languages into code that can be used as a PLC on multiple platforms.",
5
5
  "icon": "nodalis.png",
6
6
  "main": "src/nodalis.js",
package/src/nodalis.js CHANGED
@@ -24,6 +24,7 @@ import { CPPCompiler } from './compilers/CPPCompiler.js';
24
24
  import { JSCompiler } from './compilers/JSCompiler.js';
25
25
  import { SkipCompiler } from "./compilers/SkipCompiler.js";
26
26
  import { MTIProgrammer } from "./programmers/MTIProgrammer.js";
27
+ import { CompileList } from "mticp-npm"
27
28
 
28
29
  const __filename = fileURLToPath(import.meta.url);
29
30
  const __dirname = path.dirname(__filename);
@@ -59,6 +60,8 @@ function validateFileExtension(language, sourcePath) {
59
60
  }
60
61
  }
61
62
 
63
+ export const MTICompileList = CompileList;
64
+
62
65
  export class Nodalis {
63
66
  constructor() {
64
67
  this.compilers = availableCompilers;