Skip to content

Commit 36161c7

Browse files
authored
chore: make modules private (#546)
1 parent 6b35d43 commit 36161c7

File tree

12 files changed

+13
-35
lines changed

12 files changed

+13
-35
lines changed

packages/context/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/context",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "A context for an xml file",
56
"keywords": [],
67
"files": [
@@ -50,8 +51,5 @@
5051
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
5152
"test": "mocha",
5253
"coverage": "nyc mocha"
53-
},
54-
"publishConfig": {
55-
"access": "public"
5654
}
5755
}

packages/fe/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/fe",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "UI5 LSP server extension for annotation relevant building blocks",
56
"keywords": [],
67
"files": [
@@ -42,6 +43,5 @@
4243
"test": "mocha",
4344
"coverage": "nyc mocha",
4445
"format:fix": "prettier --write \"**/*.@(js|ts|json|md)\" --ignore-path=.gitignore"
45-
},
46-
"private": true
46+
}
4747
}

packages/language-server/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/language-server",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "UI5 Language Server",
56
"keywords": [
67
"LSP",
@@ -64,8 +65,5 @@
6465
"coverage": "nyc mocha",
6566
"update-snapshots": "node ./scripts/update-diagnostics-snapshots",
6667
"bundle": "webpack --mode production"
67-
},
68-
"publishConfig": {
69-
"access": "public"
7068
}
7169
}

packages/logic-utils/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/logic-utils",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "TBD",
56
"keywords": [],
67
"files": [
@@ -35,8 +36,5 @@
3536
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
3637
"test": "mocha",
3738
"coverage": "nyc mocha"
38-
},
39-
"publishConfig": {
40-
"access": "public"
4139
}
4240
}

packages/semantic-model-types/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/semantic-model-types",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "UI5 Semantic model type definitions",
56
"keywords": [],
67
"files": [
@@ -19,8 +20,5 @@
1920
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
2021
"test": "echo nothing to test",
2122
"coverage": "echo nothing to test"
22-
},
23-
"publishConfig": {
24-
"access": "public"
2523
}
2624
}

packages/semantic-model/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/semantic-model",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "Semantic model provider for UI5",
56
"keywords": [],
67
"files": [
@@ -36,8 +37,5 @@
3637
"test": "mocha",
3738
"coverage": "nyc mocha",
3839
"generate-json-api": "json2ts -i ./resources/sap-ui-library-api.json -o ./src/api-json.d.ts --no-unknownAny --bannerComment \"/* This file is automatically generated. DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file (sap-ui-library-api.json) and run generate-json-api from the package.json to regenerate this file. */\" && prettier --write ./src/api-json.d.ts"
39-
},
40-
"publishConfig": {
41-
"access": "public"
4240
}
4341
}

packages/settings/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/settings",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "Settings for UI5 Language Assistant",
56
"keywords": [],
67
"files": [
@@ -25,8 +26,5 @@
2526
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
2627
"test": "mocha",
2728
"coverage": "nyc mocha"
28-
},
29-
"publishConfig": {
30-
"access": "public"
3129
}
3230
}

packages/user-facing-text/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/user-facing-text",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "End user strings for UI5 Language Assistant",
56
"keywords": [],
67
"files": [
@@ -25,8 +26,5 @@
2526
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
2627
"test": "mocha",
2728
"coverage": "nyc mocha"
28-
},
29-
"publishConfig": {
30-
"access": "public"
3129
}
3230
}

packages/xml-views-completion/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/xml-views-completion",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "Auto-Complete Logic for UI5 XML-Views",
56
"keywords": [
67
"xml",
@@ -41,8 +42,5 @@
4142
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
4243
"test": "mocha",
4344
"coverage": "nyc mocha"
44-
},
45-
"publishConfig": {
46-
"access": "public"
4745
}
4846
}

packages/xml-views-quick-fix/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@ui5-language-assistant/xml-views-quick-fix",
33
"version": "3.3.1",
4+
"private": true,
45
"description": "Logic for UI5 XML-Views quick-fixes",
56
"keywords": [
67
"QuickFix"
@@ -38,8 +39,5 @@
3839
"lint": "eslint . --ext .ts --max-warnings=0 --ignore-path=../../.gitignore",
3940
"test": "mocha",
4041
"coverage": "nyc mocha"
41-
},
42-
"publishConfig": {
43-
"access": "public"
4442
}
4543
}

0 commit comments

Comments
 (0)