From f77bd8b20934c1a7e49dc5afc630676719c3c77b Mon Sep 17 00:00:00 2001 From: cha0s Date: Wed, 27 Jan 2021 23:22:28 -0600 Subject: [PATCH] chore: ignore --- config/package/.gitignore | 1 + config/package/postcss.config.js | 6 ++++++ packages/bootstrap/.gitignore | 1 + packages/bootstrap/postcss.config.js | 6 ++++++ packages/core/.gitignore | 1 + packages/core/postcss.config.js | 6 ++++++ packages/entity/.gitignore | 1 + packages/entity/postcss.config.js | 6 ++++++ packages/json/.gitignore | 1 + packages/json/postcss.config.js | 6 ++++++ 10 files changed, 35 insertions(+) create mode 100644 config/package/postcss.config.js create mode 100644 packages/bootstrap/postcss.config.js create mode 100644 packages/core/postcss.config.js create mode 100644 packages/entity/postcss.config.js create mode 100644 packages/json/postcss.config.js diff --git a/config/package/.gitignore b/config/package/.gitignore index 24da4ef..a7e1f93 100644 --- a/config/package/.gitignore +++ b/config/package/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/config/package/postcss.config.js b/config/package/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/config/package/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +}; diff --git a/packages/bootstrap/.gitignore b/packages/bootstrap/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/bootstrap/.gitignore +++ b/packages/bootstrap/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/bootstrap/postcss.config.js b/packages/bootstrap/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/bootstrap/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +}; diff --git a/packages/core/.gitignore b/packages/core/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/core/.gitignore +++ b/packages/core/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/core/postcss.config.js b/packages/core/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/core/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +}; diff --git a/packages/entity/.gitignore b/packages/entity/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/entity/.gitignore +++ b/packages/entity/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/entity/postcss.config.js b/packages/entity/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/entity/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +}; diff --git a/packages/json/.gitignore b/packages/json/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/json/.gitignore +++ b/packages/json/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/json/postcss.config.js b/packages/json/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/json/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +};