This repository has been archived by the owner on Dec 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(remark): added remark and remark:lint
- Loading branch information
1 parent
97a10f2
commit b6c004a
Showing
4 changed files
with
1,281 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2017 PolymerX | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,11 @@ | |
"main": "src/index.js", | ||
"license": "MIT", | ||
"author": "LasaleFamine <[email protected]>", | ||
"repository": "PolymerX/polymer-skeleton", | ||
"contributors": [ | ||
"Alessio Occhipinti <[email protected]> (https://godev.space)", | ||
"Mattia Astorino (http://equinsuocha.io/)" | ||
], | ||
"scripts": { | ||
"build": "NODE_ENV=production webpack --optimize-minimize", | ||
"dev": "webpack-dev-server --hot --inline", | ||
|
@@ -13,9 +18,10 @@ | |
"test:travis": "yarn pretest && yarn lint && wct", | ||
"clean:lighthouse": "rm *.report.html", | ||
"posttest": "yarn rmbower", | ||
"lint": "xo && stylelint src/components/**/*.postcss", | ||
"lint": "xo && stylelint src/components/**/*.postcss && remark .", | ||
"linkbower": "node scripts/link-bower.js", | ||
"rmbower": "node scripts/link-bower.js remove", | ||
"remark:lint": "remark .", | ||
"release": "standard-version" | ||
}, | ||
"xo": { | ||
|
@@ -31,6 +37,11 @@ | |
"test/test-fixture.js" | ||
] | ||
}, | ||
"remarkConfig": { | ||
"plugins": [ | ||
"preset-github" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@polymer/test-fixture": "PolymerX/test-fixture#3.0-preview", | ||
"babel-loader": "7.1.2", | ||
|
@@ -46,6 +57,8 @@ | |
"postcss": "6.0.13", | ||
"postcss-cssnext": "3.0.2", | ||
"postcss-loader": "2.0.8", | ||
"remark-cli": "4.0.0", | ||
"remark-preset-github": "0.0.7", | ||
"standard-version": "4.2.0", | ||
"stylelint": "8.2.0", | ||
"stylelint-config-standard": "17.0.0", | ||
|
Oops, something went wrong.