Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Added Bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Roelof Roos committed Oct 18, 2018
1 parent 538776d commit e11d3c1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
17 changes: 16 additions & 1 deletion gumbo-millennium/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
.PHONY: plugin.zip
.PHONY: plugin.zip install lint

install:
composer install --no-progress --no-suggest -an
yarn install --frozen-lockfile

lint:
# Lint PHP code
vendor/bin/phpcs

# Lint Sass files
find lib/sass -type f -name '*.scss' -print | xargs node_modules/.bin/stylelint

# Lint Javascript
find lib/ -type f -name '*.js' -print | xargs node_modules/.bin/eslint
find lib/ -type f -name '*.jsx' -print | xargs node_modules/.bin/eslint

plugin.zip: gumbo-millennium.zip
cp gumbo-millennium.zip plugin.zip
Expand Down
1 change: 1 addition & 0 deletions gumbo-millennium/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"babel-plugin-sass-vars": "^0.2.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"cleave.js": "^1.3.7",
"cross-env": "^5.1",
Expand Down
5 changes: 5 additions & 0 deletions gumbo-millennium/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,11 @@ bonjour@^3.5.0:
multicast-dns "^6.0.1"
multicast-dns-service-types "^1.1.0"

bootstrap@^4.1.3:
version "4.1.3"
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.1.3.tgz#0eb371af2c8448e8c210411d0cb824a6409a12be"
integrity sha512-rDFIzgXcof0jDyjNosjv4Sno77X4KuPeFxG2XZZv1/Kc8DRVGVADdoQyyOVDwPqL36DDmtCQbrpMCqvpPLJQ0w==

brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
Expand Down

0 comments on commit e11d3c1

Please sign in to comment.