Skip to content

Commit e2ab314

Browse files
committed
Push
1 parent 9f16c16 commit e2ab314

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+5232
-0
lines changed

.coveralls.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
repo_token: TKpDBcrywk4PFgFi5sdzNgDTlvbWOEADM

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
lib-cov
12+
coverage
13+
node_modules
14+
15+
.nyc_output

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
save-exact = true
2+
progress = true

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
sudo: false
2+
3+
language: node_js
4+
5+
node_js:
6+
- 'node'
7+
- '6'
8+
9+
branches:
10+
only:
11+
- master
12+
- develop
13+
14+
script:
15+
- yarn test:travis

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"xo.enable": true}

.yarnclean

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# test directories
2+
__tests__
3+
test
4+
tests
5+
powered-test
6+
7+
# asset directories
8+
docs
9+
doc
10+
website
11+
images
12+
assets
13+
14+
# examples
15+
example
16+
examples
17+
18+
# code coverage directories
19+
coverage
20+
.nyc_output
21+
22+
# build scripts
23+
Makefile
24+
Gulpfile.js
25+
Gruntfile.js
26+
27+
# configs
28+
.tern-project
29+
.gitattributes
30+
.editorconfig
31+
.*ignore
32+
.eslintrc
33+
.jshintrc
34+
.flowconfig
35+
.documentup.json
36+
.yarn-metadata.json
37+
.*.yml
38+
*.yml
39+
40+
# misc
41+
*.gz
42+
*.md

.yarnrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
save-exact true
2+
save-prefix false

LICENSE.md

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

package.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"name": "postcss-html-loader",
3+
"version": "1.0.0",
4+
"description": "PostCSS loader for loading and processing styles from within HTML templates.",
5+
"main": "src/index.js",
6+
"scripts": {
7+
"test": "xo && nyc ava",
8+
"test:integrations": "ava test/integrations",
9+
"test:travis": "xo && nyc ava && nyc report --reporter=text-lcov | coveralls"
10+
},
11+
"xo": {
12+
"space": true,
13+
"rules": {
14+
"eol-last": 0
15+
},
16+
"ignores": [
17+
"test/integrations/**/*"
18+
]
19+
},
20+
"ava": {
21+
"files": [
22+
"test/**/*.test.js"
23+
]
24+
},
25+
"repository": {
26+
"type": "git",
27+
"url": "https://github.com/PolymerX/postcss-html-loader.git"
28+
},
29+
"bugs": {
30+
"url": "https://github.com/PolymerX/postcss-html-loader/issues"
31+
},
32+
"homepage": "https://github.com/PolymerX/postcss-html-loader#readme",
33+
"author": "LasaleFamine <info@godev.space>",
34+
"license": "MIT",
35+
"engines": {
36+
"node": ">= 6"
37+
},
38+
"files": [
39+
"src"
40+
],
41+
"keywords": [
42+
"css",
43+
"postcss",
44+
"postcss-runner",
45+
"webpack",
46+
"webpack-loader",
47+
"polymer",
48+
"polymer-loader",
49+
"polymer-loader-postcss",
50+
"postcss-html-loader",
51+
"postcss-polymer-loader"
52+
],
53+
"dependencies": {
54+
"fs-extra": "4.0.1",
55+
"loader-utils": "1.1.0",
56+
"parse5": "3.0.2",
57+
"postcss": "6.0.9",
58+
"postcss-load-config": "1.2.0"
59+
},
60+
"devDependencies": {
61+
"autoprefixer": "7.1.2",
62+
"ava": "0.22.0",
63+
"coveralls": "2.13.1",
64+
"execa": "0.8.0",
65+
"nyc": "11.1.0",
66+
"text-loader": "0.0.1",
67+
"webpack": "3.5.5",
68+
"xo": "0.18.2"
69+
}
70+
}

0 commit comments

Comments
 (0)