Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIF-2144 - Disable mangling because of bug in graphql library #172

Merged
merged 24 commits into from
Jul 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a7d640f
2.0.0 ee (#149)
mhaack Jun 29, 2021
afe52f7
CIF-1724: Add Magento Storefront Events Collector (#142)
laurentiumagureanu Jun 30, 2021
015ee1f
update to cif 2.0 api (#154)
buuhuu Jun 30, 2021
e9a159b
CIF-2131 - remove "id" support for AEM Venia (#151)
mhaack Jun 30, 2021
8617e3b
CIF-2062 - adjust UrlProvider config and Sling map (#150)
mhaack Jul 8, 2021
cd2e129
CIF-2143: Create Product Recommendations AEM component (#152)
laurentiumagureanu Jul 8, 2021
799c018
CIF-2038: Migrate to CircleCI contexts (#155)
herzog31 Jul 14, 2021
a0dba40
CIF-2153 - use Button v2 (#156)
mhaack Jul 15, 2021
883470a
CIF-2193: use CIF page v2 component (#159)
mhaack Jul 15, 2021
d024e31
CIF-1926: add minimal default styling for cif navigation (#158)
LSantha Jul 16, 2021
4d13738
CIF-1380: add product collection component styling (#157)
LSantha Jul 19, 2021
fae0941
CIF-2155: update to use new v2 commerce teaser (#162)
mhaack Jul 20, 2021
f165754
CIF-2222: enable storefront context rendering (#167)
laurentiumagureanu Jul 22, 2021
aaba902
CIF-2227 - add missing image alt attribute for product teaser compone…
mhaack Jul 22, 2021
2bdb1cb
Fix unit tests broken by UrlProvider package change (#168)
laurentiumagureanu Jul 22, 2021
00086d4
CIF-2211 - Update core WCM dependency to latest for CIF components (#…
LSantha Jul 22, 2021
fddd390
releng - Update CIF Core Components to 2.0.0 (#169)
laurentiumagureanu Jul 23, 2021
3daee98
CIF-2144 - Create a React project with a Recommendation component (#153)
herzog31 Jul 26, 2021
2fd0ecf
Merge branch 'main' into dev
laurentiumagureanu Jul 26, 2021
a054028
CIF-2144 - Disable mangling because of bug in graphql library
herzog31 Jul 26, 2021
8d27598
releng - Enforce production build (to be reverted)
herzog31 Jul 26, 2021
cb8015d
CIF-2144 - Disable mangling because of bug in graphql library
herzog31 Jul 26, 2021
80c2107
Revert "releng - Enforce production build (to be reverted)"
herzog31 Jul 26, 2021
b39eb7e
Merge branch 'main' into bug/CIF-2144-graphql
laurentiumagureanu Jul 26, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui.frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<argument>install</argument>
<argument>-S</argument>
<argument>@adobe/aem-core-cif-react-components@${core.cif.components.version}</argument>
<argument>@adobe/aem-core-cif-product-recs-extension@${core.cif.components.version}</argument>
<argument>@adobe/aem-core-cif-product-recs-extension@2.0.1</argument>
</arguments>
</configuration>
</execution>
Expand Down
6 changes: 5 additions & 1 deletion ui.frontend/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ module.exports = merge(common, {
optimization: {
minimize: true,
minimizer: [
new TerserPlugin(),
new TerserPlugin({
terserOptions: {
mangle: false
},
}),
new OptimizeCSSAssetsPlugin({
cssProcessorPluginOptions: {
cssProcessor: require('cssnano'),
Expand Down