Skip to content

Commit 087dd58

Browse files
committed
fix(general): publish all together now
1 parent b10c6e8 commit 087dd58

File tree

10 files changed

+25
-83
lines changed

10 files changed

+25
-83
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ deploy:
77
provider: script
88
skip_cleanup: true
99
script:
10-
- yarn build && yarn semantic-release
10+
- yarn build && yarn publish

README.md

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
## Table of Contents
22

3-
* What is it
4-
* Purpose
5-
* Features
6-
* How to use Offcourse
7-
* Asking questions
8-
* Contributing
9-
* Authors/maintainers
10-
* Open Source License
11-
3+
- What is it
4+
- Purpose
5+
- Features
6+
- How to use Offcourse
7+
- Asking questions
8+
- Contributing
9+
- Authors/maintainers
10+
- Open Source License
1211

1312
## What is Offcourse
1413

1514
Offcourse is an open source platform for crowdsourced learning and knowledge sharing. We believe that if we share what we know, and collect that knowledge in one place, we all learn from each other and we can grow our skills in the area we want. That is why we support open source and open knowledge.
1615

1716
## Purpose
1817

19-
Our aim is to help people grow as professionals. Offcourse focuses on 21st Century Skills, such as design, entrepreneurship and programming. We don't believe in 6 year curricula, long, boring lectures, and one-size-fits-all courses. Instead you assemble your skills bit by bit.
18+
Our aim is to help people grow as professionals. Offcourse focuses on 21st Century Skills, such as design, entrepreneurship and programming. We don't believe in 6 year curricula, long, boring lectures, and one-size-fits-all courses. Instead you assemble your skills bit by bit.
2019

2120
## Features
2221

@@ -38,11 +37,11 @@ Voila, this is how it works. Have fun!
3837

3938
## Asking questions
4039

41-
If you have a question about the Offcourse platform, your account, bugs or feature requests, please check our FAQ first to find an answer. For questions not listed on our FAQ and that are other than technical issues or feature requests, don't create an issue on our GitHub repo, but contact us at contact@offcourse.io.
40+
If you have a question about the Offcourse platform, your account, bugs or feature requests, please check our FAQ first to find an answer. For questions not listed on our FAQ and that are other than technical issues or feature requests, don't create an issue on our GitHub repo, but contact us at contact@offcourse.io.
4241

4342
## Contributing
4443

45-
Offcourse is a not-for-profit organization. The learning platform we build is continuously under development. You can help us expand *the Offcourse platform and its community.**
44+
Offcourse is a not-for-profit organization. The learning platform we build is continuously under development. You can help us expand \*the Offcourse platform and its community.\*\*
4645

4746
On our GitHub repository you will find both a **Bug Database** and our **Product Roadmap soon**. If there’s a feature you’d like to work on to grow your coding skills, please do so. It doesn’t matter if you are new to programming or advanced, we welcome all levels and backgrounds to our community. Before you start, please read our Contributing Guidelines (in progress) to make sure we can work together smoothly and pleasant.
4847

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"lerna": "2.11.0",
33
"useWorkspaces": true,
44
"npmClient": "yarn",
5-
"version": "0.0.0"
5+
"version": "1.2.0"
66
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"scripts": {
1111
"test": "echo TEST",
1212
"build": "lerna run build",
13-
"semantic-release": "lerna exec --scope @offcourse/* --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo"
13+
"publish": "lerna publish --conventional-commits --changelog-preset angular-bitbucket"
1414
},
1515
"version": "0.0.0-development",
1616
"repository": {

packages/app/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "app",
3+
"private": true,
34
"version": "0.0.1",
45
"description": "",
56
"main": "index.js",
@@ -27,7 +28,8 @@
2728
},
2829
"dependencies": {
2930
"@offcourse/atoms": "^0.0.0-semantically-released",
30-
"@offcourse/organisms": "^1.0.1",
31+
"@offcourse/molecules": "^0.0.0-semantically-released",
32+
"@offcourse/organisms": "^0.0.0-semantically-released",
3133
"babel-plugin-styled-components": "^1.1.5",
3234
"next": "6.0.2",
3335
"next-progressbar": "0.0.2",

packages/app/pages/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class Content extends React.Component {
5757
items.map((fragment, index) => (
5858
<Card key={index}>
5959
<Heading size="small" section="title">
60-
{`Masonry Example ${index + 1}`}
60+
{`Card Example ${index + 1}`}
6161
</Heading>
6262
<Group section="body">
6363
<Text size="small">{fragment}</Text>
@@ -88,7 +88,7 @@ class App extends React.Component {
8888
const links = [
8989
{
9090
onClick: this.addItem,
91-
title: "Add Item",
91+
title: "Add Card",
9292
level: 1
9393
},
9494
{

packages/documentation/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@offcourse/atoms": "^1.1.0",
7-
"@offcourse/molecules": "^1.0.0",
8-
"@offcourse/organisms": "^1.0.0",
6+
"@offcourse/atoms": "^0.0.0-semantically-released",
7+
"@offcourse/molecules": "^0.0.0-semantically-released",
8+
"@offcourse/organisms": "^0.0.0-semantically-released",
99
"catalog": "^3.5.3",
1010
"react": "^16.4.0",
1111
"react-dom": "^16.4.0",

packages/molecules/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"start": "rollup -c -w"
1616
},
1717
"dependencies": {
18-
"@offcourse/atoms": "^1.1.0",
18+
"@offcourse/atoms": "^0.0.0-semantically-released",
1919
"atoms": "^0.2.0",
2020
"ramda": "^0.25.0",
2121
"react-copy-to-clipboard": "^5.0.1",

packages/organisms/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"start": "rollup -c -w"
1616
},
1717
"dependencies": {
18-
"@offcourse/atoms": "^1.1.0",
19-
"@offcourse/molecules": "^1.0.1",
18+
"@offcourse/atoms": "^0.0.0-semantically-released",
19+
"@offcourse/molecules": "^0.0.0-semantically-released",
2020
"formik": "^0.11.11",
2121
"ramda": "^0.25.0",
2222
"voca": "^1.4.0",

yarn.lock

-59
Original file line numberDiff line numberDiff line change
@@ -764,65 +764,6 @@
764764
node-fetch "^2.1.1"
765765
url-template "^2.0.8"
766766

767-
"@offcourse/atoms@^1.1.0":
768-
version "1.1.0"
769-
resolved "https://registry.yarnpkg.com/@offcourse/atoms/-/atoms-1.1.0.tgz#7c85fcf9286fc81901beba6e522a1cf4d5e30106"
770-
dependencies:
771-
"@fortawesome/fontawesome" "^1.1.4"
772-
"@fortawesome/fontawesome-free-brands" "^5.0.8"
773-
"@fortawesome/fontawesome-free-solid" "^5.0.8"
774-
"@fortawesome/react-fontawesome" "^0.0.18"
775-
atoms "^0.2.0"
776-
ramda "^0.25.0"
777-
react-masonry-infinite "^1.2.2"
778-
voca "^1.4.0"
779-
780-
"@offcourse/molecules@^1.0.0":
781-
version "1.0.0"
782-
resolved "https://registry.yarnpkg.com/@offcourse/molecules/-/molecules-1.0.0.tgz#5b499461dbbc2933b3758408126e50fa4dabbe14"
783-
dependencies:
784-
"@offcourse/atoms" "^0.0.0-semantically-released"
785-
atoms "^0.2.0"
786-
ramda "^0.25.0"
787-
react-copy-to-clipboard "^5.0.1"
788-
react-sidebar "^2.3.2"
789-
react-sortable-hoc "^0.8.3"
790-
voca "^1.4.0"
791-
792-
"@offcourse/molecules@^1.0.1":
793-
version "1.0.2"
794-
resolved "https://registry.yarnpkg.com/@offcourse/molecules/-/molecules-1.0.2.tgz#22b8011323b4dd5ab56ca218564f2c04e55964e9"
795-
dependencies:
796-
"@offcourse/atoms" "^1.1.0"
797-
atoms "^0.2.0"
798-
ramda "^0.25.0"
799-
react-copy-to-clipboard "^5.0.1"
800-
react-sidebar "^2.3.2"
801-
react-sortable-hoc "^0.8.3"
802-
voca "^1.4.0"
803-
804-
"@offcourse/organisms@^1.0.0":
805-
version "1.0.0"
806-
resolved "https://registry.yarnpkg.com/@offcourse/organisms/-/organisms-1.0.0.tgz#3bdd3e03726a3d635fd4ebcffb7d5d23b989ac22"
807-
dependencies:
808-
"@offcourse/atoms" "^0.0.0-semantically-released"
809-
"@offcourse/molecules" "^0.0.0-semantically-released"
810-
formik "^0.11.11"
811-
ramda "^0.25.0"
812-
voca "^1.4.0"
813-
yup "^0.25.1"
814-
815-
"@offcourse/organisms@^1.0.1":
816-
version "1.0.1"
817-
resolved "https://registry.yarnpkg.com/@offcourse/organisms/-/organisms-1.0.1.tgz#c1ea8ddd054425cdcc240f403f39560e9d896306"
818-
dependencies:
819-
"@offcourse/atoms" "^1.1.0"
820-
"@offcourse/molecules" "^1.0.1"
821-
formik "^0.11.11"
822-
ramda "^0.25.0"
823-
voca "^1.4.0"
824-
yup "^0.25.1"
825-
826767
"@semantic-release/commit-analyzer@^5.0.0":
827768
version "5.0.3"
828769
resolved "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-5.0.3.tgz#f2b674d30207b49b77d905ad5850d7aefd8838dd"

0 commit comments

Comments
 (0)