Skip to content

Commit

Permalink
Merge pull request #4 from SU-SOE/8.x-1.x
Browse files Browse the repository at this point in the history
8.1.0-alpha.1
  • Loading branch information
imonroe authored Jun 18, 2020
2 parents acce00b + 8c7ae12 commit 388b2a3
Show file tree
Hide file tree
Showing 72 changed files with 1,950 additions and 56 deletions.
1 change: 1 addition & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,4 @@ exclude_patterns:
- "webpack.config.js"
- "**.min.*"
- "spec/"
- "dist"
17 changes: 17 additions & 0 deletions .sass-lint-fix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
files:
include: "**/*.s+(a|c)ss"
ignore:
- vendor/**/*.scss
- node_modules/**/*.scss
syntax:
include:
- scss
- sass
resolvers:
empty-line-between-blocks: 1
final-newline: 1
space-after-colon: 1
space-before-colon: 1
space-between-parens: 1
options:
optOut: false
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Stanford Module Example
# SOE Paragraphs

8.x-1.0
8.x-1.0-alpha
--------------------------------------------------------------------------------
_Release Date: YYYY-MM-DD_
_Release Date: 2020-06-18_

- Initial Release
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# [soe_paragraphs](https://github.com/SU-SWS/soe_paragraphs)
##### Version: 8.x-2.x
##### Version: 8.x-1.x

Maintainers: [Mike Decker](https://github.com/pookmish), [sherakama](https://github.com/sherakama)
Maintainers: [Ian Monroe](https://github.com/imonroe), [Mike Decker](https://github.com/pookmish), [sherakama](https://github.com/sherakama)

Changelog: [Changelog.txt](CHANGELOG.txt)

Expand Down
94 changes: 90 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,97 @@
{
"name": "su-sws/soe_paragraphs",
"description": "Stanford Module Example",
"name": "su-soe/soe_paragraphs",
"description": "SOE Paragraphs",
"type": "drupal-custom-module",
"homepage": "https://github.com/SU-SWS/soe_paragraphs",
"homepage": "https://github.com/SU-SOE/soe_paragraphs",
"authors": [],
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {}
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/a11ychecker",
"version": "1.1.1",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/a11ychecker/releases/a11ychecker_1.1.1.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/balloonpanel",
"version": "4.14.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/balloonpanel/releases/balloonpanel_4.14.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/link",
"version": "4.14.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/link/releases/link_4.14.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/fakeobjects",
"version": "4.14.0",
"type": "drupal-library",
"dist": {
"url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "~1.0"
}
}
}
],
"require": {
"drupal/paragraphs": "^1.11",
"su-sws/jumpstart_ui": "dev-8.x-1.x",
"su-sws/stanford_text_editor": "dev-8.x-1.x"
},
"autoload": {
"psr-4": {
"Drupal\\soe_paragraphs\\": "./src",
"Drupal\\soe_paragraph_cta_list\\": "./modules/soe_paragraph_cta_list/src",
"Drupal\\soe_paragraph_image_cta\\": "./modules/soe_paragraph_image_cta/src",
"Drupal\\soe_paragraph_stories\\": "./modules/soe_paragraph_stories/src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\soe_paragraphs\\": "./tests/src",
"Drupal\\soe_paragraph_cta_list\\": "./modules/soe_paragraph_cta_list/tests/src",
"Drupal\\soe_paragraph_image_cta\\": "./modules/soe_paragraph_image_cta/tests/src",
"Drupal\\soe_paragraph_stories\\": "./modules/soe_paragraph_stories/tests/src"
}
}
}
1 change: 1 addition & 0 deletions dist/css/cta-list-paragraph.styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/css/image-cta-paragraph.styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/css/soe_paragraphs.styles.css
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
stanford{color:#b1040e}
Loading

0 comments on commit 388b2a3

Please sign in to comment.