@volue/design-media-queries 1.1.5-next.0 → 1.2.0-next.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volue/design-media-queries",
3
- "version": "1.1.5-next.0",
3
+ "version": "1.2.0-next.10",
4
4
  "description": "Media queries for Volue design primitives",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -28,20 +28,20 @@
28
28
  "clean": "rimraf dist",
29
29
  "_theo": "theo --setup theo.setup.js --transform web --dest dist",
30
30
  "build:mediaQueries": "npm run _theo -s -- --format scss,json,common.js,common.d.ts,module.js,module.d.ts,custom-properties.css,cssmodules.css,html src/index.yml",
31
- "build:mediaQueriesMap": "npm run _theo -s -- --format map.scss,common.js src/mediaQueries.yml",
31
+ "build:mediaQueriesMap": "npm run _theo -s -- --format map.scss src/mediaQueries.yml",
32
32
  "build:mediaQueriesSyncMap": "npm run _theo -s -- --format map.scss,common.js src/mediaQueriesSync.yml",
33
33
  "build": "yarn run clean && run-p \"build:*\"",
34
34
  "prepack": "yarn run build"
35
35
  },
36
36
  "devDependencies": {
37
37
  "eslint": "7.32.0",
38
- "eslint-config-powel": "12.0.1",
38
+ "eslint-config-powel": "13.0.1",
39
39
  "eslint-import-resolver-node": "0.3.6",
40
- "eslint-plugin-import": "2.24.2",
40
+ "eslint-plugin-import": "2.25.3",
41
41
  "npm-run-all": "4.1.5",
42
- "prettier": "2.3.2",
42
+ "prettier": "2.5.1",
43
43
  "rimraf": "3.0.2",
44
44
  "theo": "8.1.5",
45
- "typescript": "4.4.2"
45
+ "typescript": "4.4.4"
46
46
  }
47
47
  }
@@ -1,10 +0,0 @@
1
- module.exports = {
2
- mqSmallOnly: "screen and ( max-width: 31.1875em )",
3
- mqMediumAndUp: "screen and ( min-width: 31.25em )",
4
- mqMediumOnly: "screen and ( min-width: 31.25em ) and ( max-width: 48.75em )",
5
- mqMediumAndBelow: "screen and ( max-width: 48.6875em )",
6
- mqZeroToLarge: "screen and ( min-width: 0 ) and ( max-width: 48.6875em )",
7
- mqLargeAndUp: "screen and ( min-width: 48.75em )",
8
- mqLargeAndBelow: "screen and ( max-width: 87.4375em )",
9
- mqXlargeAndUp: "screen and ( min-width: 87.5em )",
10
- };