Skip to content

Commit 6c4bd04

Browse files
committed
fix(atoms, molecules, organisms): add scoped packages to package.json
1 parent e03e1c0 commit 6c4bd04

File tree

24 files changed

+11565
-11534
lines changed

24 files changed

+11565
-11534
lines changed

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,18 @@ language: node_js
22

33
node_js:
44
- 8
5+
before_install:
6+
- printf "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc
7+
8+
install:
9+
- npm install
10+
- npm run bootstrap -- --ci
11+
12+
script:
13+
- npm run build
514

615
deploy:
716
provider: script
817
skip_cleanup: true
918
script:
10-
- yarn build && yarn publish
19+
- npm run publish

lerna.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"lerna": "2.11.0",
3-
"useWorkspaces": true,
4-
"npmClient": "yarn",
5-
"version": "1.2.0"
3+
"version": "1.3.0",
4+
"hoist": true
65
}

package-lock.json

Lines changed: 0 additions & 50 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@
44
"cz-conventional-changelog": "^2.1.0",
55
"lerna": "^2.11.0"
66
},
7-
"workspaces": [
8-
"packages/*"
9-
],
107
"scripts": {
118
"test": "echo TEST",
9+
"bootstrap": "lerna bootstrap",
1210
"build": "lerna run --scope @offcourse/* build",
13-
"publish": "lerna --scope @offcourse/* publish --conventional-commits --changelog-preset angular-bitbucket"
11+
"publish": "lerna publish --canary --conventional-commits --yes"
1412
},
15-
"version": "0.0.0-development",
13+
"version": "0.0.0",
1614
"repository": {
1715
"type": "git",
1816
"url": "https://github.com/OffCourse/offcourse-next.git"

packages/app/.gitignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

packages/app/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="1.3.1"></a>
7+
## [1.3.1](https://github.com/OffCourse/offcourse-next/compare/v1.3.0...v1.3.1) (2018-06-05)
8+
9+
**Note:** Version bump only for package app
10+
11+
12+
13+
14+
15+
<a name="1.3.0"></a>
16+
## 1.3.0 (2018-06-05)
17+
18+
* fix(atoms): adjust card size ([061819a](https://github.com/OffCourse/offcourse-next/commit/061819a))
19+
* fix(atoms): change card width once more ([9e406f9](https://github.com/OffCourse/offcourse-next/commit/9e406f9))
20+
* fix(general): publish all together now ([8e159c3](https://github.com/OffCourse/offcourse-next/commit/8e159c3))
21+
* fix(molecules): lock atoms dep ([7a3409f](https://github.com/OffCourse/offcourse-next/commit/7a3409f))
22+
* fix(documentation,organisms,app): remove submodules,fix docs, add app ([7be7ff3](https://github.com/OffCourse/offcourse-next/commit/7be7ff3))

packages/app/next.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/app/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "app",
33
"private": true,
4-
"version": "0.0.1",
4+
"version": "0.0.0-semantically-released",
55
"description": "",
66
"main": "index.js",
77
"scripts": {
@@ -27,15 +27,15 @@
2727
]
2828
},
2929
"dependencies": {
30-
"@offcourse/atoms": "^0.0.0-semantically-released",
31-
"@offcourse/molecules": "^0.0.0-semantically-released",
32-
"@offcourse/organisms": "^0.0.0-semantically-released",
30+
"@offcourse/atoms": "0.0.0-semantically-released",
31+
"@offcourse/molecules": "0.0.0-semantically-released",
32+
"@offcourse/organisms": "0.0.0-semantically-released",
3333
"babel-plugin-styled-components": "^1.1.5",
3434
"next": "6.0.2",
3535
"next-progressbar": "0.0.2",
3636
"ramda": "^0.25.0",
37-
"react": "^16.3.2",
38-
"react-dom": "^16.3.2",
37+
"react": "^16.4.0",
38+
"react-dom": "^16.4.0",
3939
"system-components": "^2.0.3"
4040
}
4141
}

packages/app/pages/_document.js

Lines changed: 0 additions & 28 deletions
This file was deleted.

packages/app/themes/default.js

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)