Skip to content

Commit 8fc9ef2

Browse files
committed
Remove postcss-import plugin for now
See postcss/postcss-import#194 (comment)
1 parent 0722291 commit 8fc9ef2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
> [ASP.NET Core Starter Kit](https://github.com/kriasoft/aspnet-starter-kit) is an opinionated
44
> boilerplate for web development based on [.NET Core](http://dotnet.github.io/),
5-
> [GraphQL](http://graphql.org/) on the backend and [Babel](http://babeljs.io/),
6-
> [Webpack](https://webpack.github.io/), [React](https://facebook.github.io/react) on the frontend.
7-
> It comes in both [C#](https://github.com/kriasoft/aspnet-starter-kit) and
5+
> [Kestrel](https://github.com/aspnet/KestrelHttpServer), [GraphQL](http://graphql.org/) on the
6+
> backend and [Babel](http://babeljs.io/), [Webpack](https://webpack.github.io/),
7+
> [React](https://facebook.github.io/react) on the frontend. This boilerplate comes in both
8+
> [C#](https://github.com/kriasoft/aspnet-starter-kit) and
89
> [F#](https://github.com/kriasoft/fsharp-starter-kit) flavors.
910
1011

@@ -136,9 +137,8 @@ $ npm run deploy # Same as running: node tools/deploy --productio
136137
### Related Projects
137138

138139
* [React Starter Kit](https://github.com/kriasoft/react-starter-kit) — Isomorphic web app boilerplate (Node.js, Express, GraphQL, React)
139-
* [ASP.NET Core Starter Kit](https://github.com/kriasoft/aspnet-starter-kit) — Web app boilerplate (.NET Core, C#, JavaScript, Babel, Webpack, React)
140140
* [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit) — JavaScript library boilerplate (ES2015+, Babel, Rollup)
141-
* [React Static Boilerplate](https://github.com/koistya/react-static-boilerplate)Generate static websites from React components with Webpack
141+
* [ASP.NET Core Starter Kit](https://github.com/kriasoft/aspnet-starter-kit)Web app boilerplate (C#, .NET Core, Kestrel, GraphQL, React)
142142
* [Universal Router](https://github.com/kriasoft/universal-router) — Isomorphic router for web and single-page applications (SPA)
143143
* [Membership Database](https://github.com/membership/membership.db) — SQL database boilerplate for web app users, roles and auth tokens
144144

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@
2929
"cpy": "^4.0.1",
3030
"css-loader": "^0.23.1",
3131
"del": "^2.2.0",
32-
"eslint": "^2.11.0",
32+
"eslint": "^2.11.1",
3333
"eslint-config-airbnb": "^9.0.1",
3434
"eslint-plugin-import": "^1.8.1",
35-
"eslint-plugin-jsx-a11y": "^1.2.2",
35+
"eslint-plugin-jsx-a11y": "^1.3.0",
3636
"eslint-plugin-react": "^5.1.1",
3737
"extend": "^3.0.0",
3838
"file-loader": "^0.8.5",
39-
"front-matter": "^2.0.8",
39+
"front-matter": "^2.1.0",
4040
"highlight.js": "^9.4.0",
4141
"json-loader": "^0.5.4",
42-
"markdown-it": "^6.0.4",
42+
"markdown-it": "^6.0.5",
4343
"mkdirp": "^0.5.1",
4444
"mocha": "^2.5.3",
4545
"pixrem": "^3.0.1",
@@ -61,7 +61,7 @@
6161
"stylelint": "^6.5.1",
6262
"stylelint-config-standard": "^8.0.0",
6363
"url-loader": "^0.5.7",
64-
"webpack": "^2.1.0-beta.7",
64+
"webpack": "^2.1.0-beta.13",
6565
"webpack-dev-middleware": "^1.6.1",
6666
"webpack-hot-middleware": "^2.10.0"
6767
},

tools/webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const config = {
124124
return [
125125
// Transfer @import rule by inlining content, e.g. @import 'normalize.css'
126126
// https://github.com/postcss/postcss-import
127-
require('postcss-import')({ addDependencyTo: bundler }),
127+
// require('postcss-import')({ addDependencyTo: bundler }),
128128
// W3C variables, e.g. :root { --color: red; } div { background: var(--color); }
129129
// https://github.com/postcss/postcss-custom-properties
130130
require('postcss-custom-properties')(),

0 commit comments

Comments
 (0)