@gem-sdk/styles 21.0.0 → 21.1.0-staging.40

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.
Files changed (2) hide show
  1. package/package.json +13 -13
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/styles",
3
- "version": "21.0.0",
3
+ "version": "21.1.0-staging.40",
4
4
  "description": "Largely classless, blazing fast and super light-weight. Bonsai, a base CSS framework for modern browsers",
5
5
  "license": "MIT",
6
6
  "main": "src/index.js",
@@ -14,6 +14,18 @@
14
14
  "scripts": {
15
15
  "build": "gulp build"
16
16
  },
17
+ "browserslist": {
18
+ "production": [
19
+ ">0.2%",
20
+ "not dead",
21
+ "not op_mini all"
22
+ ],
23
+ "development": [
24
+ "last 1 chrome version",
25
+ "last 1 firefox version",
26
+ "last 1 safari version"
27
+ ]
28
+ },
17
29
  "devDependencies": {
18
30
  "cssnano": "7.1.2",
19
31
  "csstype": "3.2.3",
@@ -27,17 +39,5 @@
27
39
  "gulp-sizereport": "1.2.1",
28
40
  "gulp-sourcemaps": "3.0.0",
29
41
  "postcss-import": "16.1.1"
30
- },
31
- "browserslist": {
32
- "production": [
33
- ">0.2%",
34
- "not dead",
35
- "not op_mini all"
36
- ],
37
- "development": [
38
- "last 1 chrome version",
39
- "last 1 firefox version",
40
- "last 1 safari version"
41
- ]
42
42
  }
43
43
  }
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
- const preset = require('./preset');
2
1
  const properties = require('./properties');
2
+ const preset = require('./preset');
3
3
 
4
4
  module.exports.preset = preset;
5
5
  module.exports.properties = properties;