@abaplint/transpiler 2.11.95 → 2.11.96

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.
@@ -99,8 +99,8 @@ class PopulateTables {
99
99
  if (!this.hasT000) {
100
100
  return "";
101
101
  }
102
- // todo, this should take the client number from the settings
103
- return `INSERT INTO t000 ('mandt', 'cccategory', 'ccnocliind') VALUES ('123', '', '');`;
102
+ // todo, this should take the client number from the json abap_transpile.json settings
103
+ return `INSERT INTO t000 ("mandt", "cccategory", "ccnocliind") VALUES ('123', '', '');`;
104
104
  }
105
105
  escape(value) {
106
106
  let ret = value.replace(/\'/g, "''");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.11.95",
3
+ "version": "2.11.96",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",
@@ -29,15 +29,15 @@
29
29
  "author": "abaplint",
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@abaplint/core": "^2.113.217",
32
+ "@abaplint/core": "^2.113.218",
33
33
  "source-map": "^0.7.6"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/chai": "^4.3.20",
37
37
  "@types/mocha": "^10.0.10",
38
38
  "chai": "^4.5.0",
39
- "mocha": "^11.7.2",
39
+ "mocha": "^11.7.3",
40
40
  "source-map-support": "^0.5.21",
41
- "typescript": "^5.9.2"
41
+ "typescript": "^5.9.3"
42
42
  }
43
43
  }