Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit 848697e

Browse files
author
thewei
committed
init
0 parents  commit 848697e

File tree

6 files changed

+181
-0
lines changed

6 files changed

+181
-0
lines changed

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.DS_*
2+
*.log
3+
logs
4+
**/*.backup.*
5+
**/*.back.*
6+
7+
node_modules
8+
bower_componets
9+
10+
*.sublime*
11+
12+
psd
13+
thumb
14+
sketch

.npmignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.DS_*
2+
*.log
3+
logs
4+
**/*.backup.*
5+
**/*.back.*
6+
7+
node_modules
8+
bower_componets
9+
10+
*.sublime*
11+
12+
psd
13+
thumb
14+
sketch

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2015 thewei
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
## react-native-css-loader ![NPM version](https://img.shields.io/npm/v/react-native-css-loader.svg?style=flat)
2+
3+
You can use react-native-css-loader width react-native-webpack-server, which can use webpack to built react-native app better.
4+
5+
> react-native-css-loader, inspired by gulp-react-native-stylesheet-css, thanks.
6+
7+
### Installation
8+
```bash
9+
$ npm install react-native-css-loader --save-dev
10+
```
11+
12+
### Usage
13+
```js
14+
var styles = require("react-native-css!./file.css");
15+
// => returns react-native stylesheet object
16+
17+
```
18+
Or within the webpack config:
19+
```js
20+
only css:
21+
module: {
22+
loaders: [{
23+
test: /\.css$/,
24+
loader: 'react-native-css-loader'
25+
}]
26+
}
27+
28+
use stylus:
29+
module: {
30+
loaders: [{
31+
test: /\.styl$/,
32+
loader: 'react-native-css-loader!stylus-loader'
33+
}]
34+
}
35+
36+
use sass:
37+
module: {
38+
loaders: [{
39+
test: /\.styl$/,
40+
loader: 'react-native-css-loader!sass-loader'
41+
}]
42+
}
43+
44+
use less:
45+
module: {
46+
loaders: [{
47+
test: /\.styl$/,
48+
loader: 'react-native-css-loader!less-loader'
49+
}]
50+
}
51+
52+
```
53+
54+
### API
55+
check this file: `index.js`
56+
57+
### Contributing
58+
- Fork this Repo first
59+
- Clone your Repo
60+
- Install dependencies by `$ npm install`
61+
- Checkout a feature branch
62+
- Feel free to add your features
63+
- Make sure your features are fully tested
64+
- Publish your local branch, Open a pull request
65+
- Enjoy hacking <3
66+
67+
### MIT license
68+
Copyright (c) 2015 thewei
69+
70+
Permission is hereby granted, free of charge, to any person obtaining a copy
71+
of this software and associated documentation files (the &quot;Software&quot;), to deal
72+
in the Software without restriction, including without limitation the rights
73+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
74+
copies of the Software, and to permit persons to whom the Software is
75+
furnished to do so, subject to the following conditions:
76+
77+
The above copyright notice and this permission notice shall be included in
78+
all copies or substantial portions of the Software.
79+
80+
THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
83+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
84+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
85+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
86+
THE SOFTWARE.
87+
88+
---
89+
![docor]()
90+
built upon love by [docor](git+https://github.com/turingou/docor.git) v0.3.0

index.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var parseCss = require('gulp-react-native-stylesheet-css/lib/parseCss');
2+
3+
module.exports = function(source) {
4+
5+
var style = parseCss(source.replace(/\r?\n|\r/g, ""));
6+
7+
var prefix = "", suffix = "";
8+
prefix = "var React = require('react-native');\nmodule.exports = React.StyleSheet.create(";
9+
suffix = ");";
10+
var content = prefix + style + suffix
11+
return content;
12+
};

package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "react-native-css-loader",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/thewei/react-native-css-loader.git"
12+
},
13+
"keywords": [
14+
"react",
15+
"react-native",
16+
"css",
17+
"webpack",
18+
"loader",
19+
"react-native-css",
20+
"react-native-css-loader"
21+
],
22+
"author": "thewei",
23+
"license": "MIT",
24+
"bugs": {
25+
"url": "https://github.com/thewei/react-native-css-loader/issues"
26+
},
27+
"homepage": "https://github.com/thewei/react-native-css-loader#readme",
28+
"dependencies": {
29+
"gulp-react-native-stylesheet-css": "^1.4.0",
30+
"react-native": "^0.11.4"
31+
}
32+
}

0 commit comments

Comments
 (0)