@shopware-ag/dive 1.0.17 → 1.0.18
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/README.md +21 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
|
|
2
|
+
<p align="center">
|
|
3
|
+
<img alt="DIVE logo" src="./assets/svg/dive.svg" style="width: 100%; height: auto; max-height: 500px;">
|
|
4
|
+
</p>
|
|
5
|
+
|
|
6
|
+
<p align="center">
|
|
7
|
+
<a href="#badge">
|
|
8
|
+
<img alt="dive: downloads" src="https://img.shields.io/npm/v/%40shopware-ag%2Fdive">
|
|
9
|
+
</a>
|
|
10
|
+
<a href="#badge">
|
|
11
|
+
<img alt="dive: downloads" src="https://img.shields.io/npm/d18m/%40shopware-ag%2Fdive">
|
|
12
|
+
</a>
|
|
13
|
+
<a href="#badge">
|
|
14
|
+
<img alt="dive: downloads" src="https://img.shields.io/npm/l/%40shopware-ag%2Fdive">
|
|
15
|
+
</a>
|
|
16
|
+
<a href="#badge">
|
|
17
|
+
<img alt="dive: downloads" src="https://img.shields.io/npm/types/%40shopware-ag%2Fdive">
|
|
18
|
+
</a>
|
|
19
|
+
</p>
|
|
20
|
+
|
|
2
21
|
# About
|
|
3
22
|
DIVE is a spatial framework made by and optimized for Shopware. It can be used directly integrated in a Shopware frontend such as Storefront or in any other frontend you want to use it in, it is not tied to Shopware.
|
|
4
23
|
|
|
@@ -25,9 +44,9 @@ module.exports = () => {
|
|
|
25
44
|
return {
|
|
26
45
|
...
|
|
27
46
|
resolve: {
|
|
28
|
-
extensions: ['.ts', '.
|
|
47
|
+
extensions: ['.ts', '.cjs', '.js'],
|
|
29
48
|
alias: {
|
|
30
|
-
dive: path.resolve(__dirname, 'path/to/node_modules/@shopware-ag/dive'),
|
|
49
|
+
"@shopware-ag/dive": path.resolve(__dirname, 'path/to/node_modules/@shopware-ag/dive'),
|
|
31
50
|
}
|
|
32
51
|
},
|
|
33
52
|
...
|