mod-build 4.0.30-beta.2 → 4.0.30

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
@@ -1,6 +1,6 @@
1
1
  ## 4.0.30
2
2
 
3
- - Reverting back to old version of `stylelint`
3
+ - Reverting back to version `16.9.0` of `stylelint` as the newest version was throwing config error
4
4
 
5
5
  ## 4.0.29
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "4.0.30-beta.2",
3
+ "version": "4.0.30",
4
4
  "description": "Share components for S3 sites.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -144,17 +144,6 @@ export const handlebarsHelpers = [
144
144
  return index;
145
145
  }
146
146
  },
147
- // Adding helper to check if mobile (< 768px)
148
- {
149
- name: 'isMobile',
150
- fn: function(expression, options) {
151
- if (window.innerWidth < 768) {
152
- return options.fn(expression);
153
- } else {
154
- return options.inverse(expression);
155
- }
156
- }
157
- },
158
147
  // Loop to go through and add each attribute defined in the attributes: {} object
159
148
  {
160
149
  name: 'addAttributes',