@ui5/create-webcomponents-package 1.12.0-rc.1 → 1.12.0-rc.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.12.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.1...v1.12.0-rc.2) (2023-03-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * inline sources in the .map file so the src folder is not mandatory ([#6732](https://github.com/SAP/ui5-webcomponents/issues/6732)) ([16771a6](https://github.com/SAP/ui5-webcomponents/commit/16771a64d7b13f418af9afa1a03b224fe3762775))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.0...v1.12.0-rc.1) (2023-03-16)
7
18
 
8
19
  **Note:** Version bump only for package @ui5/create-webcomponents-package
package/create-package.js CHANGED
@@ -116,6 +116,10 @@ const generateFilesContent = (name, tag, typescript) => {
116
116
  },
117
117
  };
118
118
 
119
+ if (typescript) {
120
+ packageContent.devDependencies.typescript = "^4.9.4";
121
+ }
122
+
119
123
  // Update package.json
120
124
  const destDir = path.join(`./`, name);
121
125
  mkdirp.sync(destDir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/create-webcomponents-package",
3
- "version": "1.12.0-rc.1",
3
+ "version": "1.12.0-rc.2",
4
4
  "description": "UI5 Web Components: create package",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -24,5 +24,5 @@
24
24
  "prompts": "^2.4.1",
25
25
  "yargs": "^17.5.1"
26
26
  },
27
- "gitHead": "d9d5077df87afcda0589596174767ef5d512bcf1"
27
+ "gitHead": "2af8e0fa36a3c85253cbc4f76f6b92b1c5a7a47f"
28
28
  }
@@ -7,6 +7,7 @@
7
7
  "outDir": "dist",
8
8
  "skipLibCheck": true,
9
9
  "sourceMap": true,
10
+ "inlineSources": true,
10
11
  "strict": true,
11
12
  "moduleResolution": "node",
12
13
  "experimentalDecorators": true,