@adobe-commerce/elsie 1.8.0-beta.0 → 1.8.0
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 +16 -0
- package/config/vite.mjs +5 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @adobe-commerce/elsie
|
|
2
2
|
|
|
3
|
+
## 1.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c4da094: Enhance the Vite build process to automatically generate a package.json file and include both the LICENSE and CHANGELOG files in the dist directory.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7792c59: Fix vite.mjs path for LICENSE.md
|
|
12
|
+
|
|
13
|
+
## 1.8.0-beta.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 7792c59: Fix vite.mjs path for LICENSE.md
|
|
18
|
+
|
|
3
19
|
## 1.8.0-beta.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/config/vite.mjs
CHANGED
|
@@ -350,13 +350,14 @@ export default {
|
|
|
350
350
|
),
|
|
351
351
|
});
|
|
352
352
|
|
|
353
|
+
const licensePath = path.resolve(process.cwd(), 'LICENSE.md');
|
|
354
|
+
if (!fs.existsSync(licensePath)) {
|
|
355
|
+
this.error(`LICENSE.md not found at ${licensePath}`);
|
|
356
|
+
}
|
|
353
357
|
this.emitFile({
|
|
354
358
|
type: 'asset',
|
|
355
359
|
fileName: 'LICENSE.md',
|
|
356
|
-
source: fs.readFileSync(
|
|
357
|
-
path.resolve(process.cwd(), '../../LICENSE.md'),
|
|
358
|
-
'utf-8'
|
|
359
|
-
),
|
|
360
|
+
source: fs.readFileSync(licensePath, 'utf-8'),
|
|
360
361
|
});
|
|
361
362
|
|
|
362
363
|
const changelogPath = path.resolve(process.cwd(), 'CHANGELOG.md');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe-commerce/elsie",
|
|
3
|
-
"version": "1.8.0
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"description": "Domain Package SDK",
|
|
6
6
|
"engines": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@adobe-commerce/fetch-graphql": "~1.2.3",
|
|
33
33
|
"@adobe-commerce/recaptcha": "~1.0.3",
|
|
34
34
|
"@adobe-commerce/storefront-design": "~1.0.0",
|
|
35
|
-
"@dropins/build-tools": "~1.1.0
|
|
35
|
+
"@dropins/build-tools": "~1.1.0",
|
|
36
36
|
"preact": "~10.22.1",
|
|
37
37
|
"vite-plugin-banner": "^0.8.0"
|
|
38
38
|
},
|