From 1ae084057bce57ebdaa405715b5895992903c516 Mon Sep 17 00:00:00 2001 From: cha0s Date: Wed, 27 Jan 2021 23:21:15 -0600 Subject: [PATCH] chore: ignore --- config/package/.gitignore | 1 + config/package/postcss.config.js | 6 ++++++ packages/combat/.gitignore | 1 + packages/combat/postcss.config.js | 6 ++++++ packages/core/.gitignore | 1 + packages/core/postcss.config.js | 6 ++++++ packages/farm/.gitignore | 1 + packages/farm/postcss.config.js | 6 ++++++ packages/inventory/.gitignore | 1 + packages/inventory/postcss.config.js | 6 ++++++ packages/universe/.gitignore | 1 + packages/universe/postcss.config.js | 6 ++++++ 12 files changed, 42 insertions(+) create mode 100644 config/package/postcss.config.js create mode 100644 packages/combat/postcss.config.js create mode 100644 packages/core/postcss.config.js create mode 100644 packages/farm/postcss.config.js create mode 100644 packages/inventory/postcss.config.js create mode 100644 packages/universe/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/combat/.gitignore b/packages/combat/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/combat/.gitignore +++ b/packages/combat/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/combat/postcss.config.js b/packages/combat/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/combat/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/farm/.gitignore b/packages/farm/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/farm/.gitignore +++ b/packages/farm/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/farm/postcss.config.js b/packages/farm/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/farm/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +}; diff --git a/packages/inventory/.gitignore b/packages/inventory/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/inventory/.gitignore +++ b/packages/inventory/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/inventory/postcss.config.js b/packages/inventory/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/inventory/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +}; diff --git a/packages/universe/.gitignore b/packages/universe/.gitignore index 24da4ef..a7e1f93 100644 --- a/packages/universe/.gitignore +++ b/packages/universe/.gitignore @@ -1,6 +1,7 @@ **/*.js **/*.map !/.* +!/postcss.config.js !/webpack.config.js !src/**/*.js !/test/**/*.js diff --git a/packages/universe/postcss.config.js b/packages/universe/postcss.config.js new file mode 100644 index 0000000..08c5240 --- /dev/null +++ b/packages/universe/postcss.config.js @@ -0,0 +1,6 @@ +/* eslint-disable global-require */ +module.exports = { + plugins: [ + require('autoprefixer'), + ], +};