Skip to content

Commit f6c4083

Browse files
committed
Bump playground postcss-css-variables to v0.5.0
1 parent 5d6cf3a commit f6c4083

File tree

7 files changed

+9739
-8978
lines changed

7 files changed

+9739
-8978
lines changed

playground/build.js

Lines changed: 7703 additions & 7137 deletions
Large diffs are not rendered by default.

playground/build.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playground/caniuse-db-json-systemjs-paths.json

Lines changed: 549 additions & 485 deletions
Large diffs are not rendered by default.

playground/config.js

Lines changed: 1472 additions & 1342 deletions
Large diffs are not rendered by default.

playground/css.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import inlineComments from 'postcss-inline-comment';
44
import mixins from 'postcss-mixins';
55
import nestedcss from 'postcss-nested';
66
import cssvariables from 'postcss-css-variables';
7-
import autoprefixer from 'autoprefixer-core';
7+
import autoprefixer from 'autoprefixer';
88

99
import cursorHandMixin from './custom-postcss-mixins/cursor-hand';
1010
import toggleCheckboxEnclosedMixin from './custom-postcss-mixins/toggle-checkbox-enclosed';
@@ -22,4 +22,4 @@ let processors = [
2222
autoprefixer({browsers: ['last 10 versions']})
2323
];
2424

25-
export default pluginPostcss(processors);
25+
export default pluginPostcss(processors);

playground/gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ gulp.task('generate-caniuse-db-json-systemjs-paths', function(done) {
4646

4747
var jsonFileMap = {};
4848

49-
var jsonGlobPatternString = 'jspm_packages/npm/caniuse-db@1.0.30000161/**/*.json';
49+
var jsonGlobPatternString = 'jspm_packages/npm/caniuse-db@1.0.30000304/**/*.json';
5050
var jsonBaseGlobPath = glob2base(new glob.Glob(jsonGlobPatternString));
5151

5252
glob(jsonGlobPatternString, {})
5353
.then(function(completeFilePaths) {
5454
completeFilePaths.forEach(function(completeFilePath) {
5555
var filePath = path.join(
56-
'caniuse-db@1.0.30000161/',
56+
'caniuse-db@1.0.30000304/',
5757
path.relative(jsonBaseGlobPath, completeFilePath)
5858
)
5959
.replace(/\\/g, '/');
@@ -147,4 +147,4 @@ gulp.task('default', function(callback) {
147147
['build-setup'],
148148
callback
149149
);
150-
});
150+
});

playground/package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"jspm": {
33
"directories": {},
44
"dependencies": {
5-
"autoprefixer-core": "npm:autoprefixer-core@^5.1.11",
5+
"autoprefixer": "npm:autoprefixer@^6.0.2",
66
"bluebird": "npm:bluebird@^2.9.25",
77
"classnames": "npm:classnames@^1.2.2",
88
"events": "npm:events@^1.0.2",
@@ -13,11 +13,12 @@
1313
"localforage": "npm:localforage@^1.2.2",
1414
"object-assign": "npm:object-assign@^2.0.0",
1515
"plugin-postcss": "github:geelen/plugin-postcss@^0.1.0",
16-
"postcss": "npm:postcss@^4.1.8",
17-
"postcss-css-variables": "npm:postcss-css-variables@^0.4.0",
18-
"postcss-inline-comment": "npm:postcss-inline-comment@^1.0.3",
19-
"postcss-mixins": "npm:postcss-mixins@^0.1.1",
20-
"postcss-nested": "npm:postcss-nested@^0.2.2",
16+
"postcss": "npm:postcss@^5.0.5",
17+
"postcss-css-variables": "npm:postcss-css-variables@^0.5.0",
18+
"postcss-inline-comment": "npm:postcss-inline-comment@^2.0.0",
19+
"postcss-mixins": "npm:postcss-mixins@^1.0.0",
20+
"postcss-nested": "npm:postcss-nested@^1.0.0",
21+
"postcss-safe-parser": "npm:postcss-safe-parser@^1.0.1",
2122
"react": "npm:react@^0.13.2",
2223
"systemjs/plugin-css": "github:systemjs/plugin-css@^0.1.10",
2324
"throttle": "npm:lodash.throttle@^3.0.2",
@@ -48,7 +49,7 @@
4849
},
4950
"scripts": {
5051
"prepublish": "jspm install -y",
51-
"build": "iojs ./node_modules/gulp/bin/gulp.js",
52-
"build-dev": "iojs ./node_modules/gulp/bin/gulp.js --dev"
52+
"build": "gulp",
53+
"build-dev": "gulp --dev"
5354
}
5455
}

0 commit comments

Comments
 (0)