@abaplint/core 2.119.41 → 2.119.42

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.
@@ -74,7 +74,7 @@ class Registry {
74
74
  }
75
75
  static abaplintVersion() {
76
76
  // magic, see build script "version.js"
77
- return "2.119.41";
77
+ return "2.119.42";
78
78
  }
79
79
  getDDICReferences() {
80
80
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.119.41",
3
+ "version": "2.119.42",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",
@@ -8,7 +8,8 @@
8
8
  "scripts": {
9
9
  "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
10
10
  "lint:fix": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --fix",
11
- "compile": "tsc && node scripts/version.js",
11
+ "clean": "rm -rf build",
12
+ "compile": "npm run clean && tsc && node scripts/version.js",
12
13
  "watch": "tsc --watch",
13
14
  "test": "npm run compile && mocha --timeout 1000 && npm run lint && npm run schema && api-extractor run",
14
15
  "test:only": "npm run compile && mocha --timeout 1000000",
@@ -19,8 +20,8 @@
19
20
  "syntax_performance": "tsc && curl -o lexer_performance.abap https://raw.githubusercontent.com/abapGit/build/main/zabapgit_standalone.prog.abap && node build/adhoc/syntax_performance.js",
20
21
  "typed_array": "tsc && node build/adhoc/typed_array.js",
21
22
  "schema": "node scripts/schema.js > scripts/schema.ts && ts-json-schema-generator --tsconfig tsconfig_schema.json --jsDoc extended --path scripts/schema.ts > scripts/schema.json && node scripts/schema_post.js",
22
- "publish:minor": "npm --no-git-tag-version version minor && rm -rf build && npm install && npm run test && npm publish --access public",
23
- "publish:patch": "npm --no-git-tag-version version patch && rm -rf build && npm install && npm run test && npm publish --access public"
23
+ "publish:minor": "npm --no-git-tag-version version minor && npm install && npm run test && npm publish --access public",
24
+ "publish:patch": "npm --no-git-tag-version version patch && npm install && npm run test && npm publish --access public"
24
25
  },
25
26
  "mocha": {
26
27
  "recursive": true,