1
0
mirror of https://github.com/taniarascia/new-moon.git synced 2025-04-19 11:22:15 +03:00

Add autoprefixer.

This commit is contained in:
XhmikosR 2019-05-25 16:59:08 +03:00
parent 99e32ab108
commit 5331a68da0
5 changed files with 2908 additions and 1 deletions

13
.browserslistrc Normal file
View File

@ -0,0 +1,13 @@
# https://github.com/browserslist/browserslist#readme
>= 1%
last 1 major version
not dead
Chrome >= 45
Firefox >= 38
Edge >= 12
Explorer >= 10
iOS >= 9
Safari >= 9
Android >= 4.4
Opera >= 30

4
.gitignore vendored
View File

@ -1 +1,3 @@
.DS_Store
/.netlify/
/node_modules/
.DS_Store

2854
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

28
package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "new-moon",
"version": "1.0.0",
"private": true,
"description": "🌙 New Moon Syntax Theme - The optimized dark theme for web development.",
"repository": {
"type": "git",
"url": "git+https://github.com/taniarascia/new-moon.git"
},
"author": "Tania Rascia <me@taniarascia.com> (https://www.taniarascia.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/taniarascia/new-moon/issues"
},
"homepage": "https://taniarascia.github.io/new-moon/",
"main": "",
"keywords": [],
"dependencies": "",
"devDependencies": {
"autoprefixer": "^9.5.1",
"postcss-cli": "^6.1.2"
},
"scripts": {
"prefix": "npm run postcss",
"postcss": "postcss --replace docs/css/main.css",
"test": "npm run postcss"
}
}

10
postcss.config.js Normal file
View File

@ -0,0 +1,10 @@
'use strict';
const autoprefixer = require('autoprefixer');
module.exports = {
map: false,
plugins: [
autoprefixer({ cascade: false })
]
};