Skip to content

Commit

Permalink
chore(release): cut 1.1.2 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.2](v1.1.1...v1.1.2) (2019-08-27)

### Bug Fixes

* use a flat workspaces array ([6b6a7be](6b6a7be))
  • Loading branch information
@dhis2-bot committed Aug 27, 2019
1 parent 43416f0 commit b4f37ad
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 67 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.1.2](https://github.com/dhis2/app-platform/compare/v1.1.1...v1.1.2) (2019-08-27)


### Bug Fixes

* use a flat workspaces array ([6b6a7be](https://github.com/dhis2/app-platform/commit/6b6a7be))

## [1.1.1](https://github.com/dhis2/app-platform/compare/v1.1.0...v1.1.1) (2019-08-27)


Expand Down
92 changes: 46 additions & 46 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"name": "@dhis2/cli-app-scripts",
"version": "0.9.1",
"main": "src/index.js",
"repository": "https://github.com/amcgee/dhis2-app-platform",
"author": "Austin McGee <austin@dhis2.org>",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"files": [
"assets",
"bin",
"config",
"src"
],
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@dhis2/cli-helpers-engine": "^1.4.0",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"gaze": "^1.1.3",
"handlebars": "^4.1.2",
"i18next-conv": "^9",
"i18next-scanner": "^2.9.1",
"lodash": "^4.17.11",
"react": "*",
"rollup": "^1.20.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"styled-jsx": "^3.2.1"
},
"bin": {
"d2-app-scripts": "./bin/d2-app-scripts"
},
"scripts": {
"copy:shell": "mkdir -p assets && rm -rf assets/shell && cp -rf ../shell assets/shell && rm -rf assets/shell/node_modules",
"build": "yarn copy:shell",
"prepublishOnly": "yarn build"
}
"name": "@dhis2/cli-app-scripts",
"version": "1.1.2",
"main": "src/index.js",
"repository": "https://github.com/amcgee/dhis2-app-platform",
"author": "Austin McGee <austin@dhis2.org>",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"files": [
"assets",
"bin",
"config",
"src"
],
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@dhis2/cli-helpers-engine": "^1.4.0",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"gaze": "^1.1.3",
"handlebars": "^4.1.2",
"i18next-conv": "^9",
"i18next-scanner": "^2.9.1",
"lodash": "^4.17.11",
"react": "*",
"rollup": "^1.20.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"styled-jsx": "^3.2.1"
},
"bin": {
"d2-app-scripts": "./bin/d2-app-scripts"
},
"scripts": {
"copy:shell": "mkdir -p assets && rm -rf assets/shell && cp -rf ../shell assets/shell && rm -rf assets/shell/node_modules",
"build": "yarn copy:shell",
"prepublishOnly": "yarn build"
}
}
43 changes: 22 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
{
"name": "root",
"private": true,
"workspaces": [
"cli"
],
"devDependencies": {
"@dhis2/cli-style": "^4.1.1",
"babel-eslint": "^10.0.3",
"concurrently": "^4.1.2"
},
"scripts": {
"format": "d2-style js apply --all --no-stage",
"install:example": "cd examples/simple-app && yarn install --force --check-files",
"build:cli": "cd cli && yarn build",
"build:docs": "cp -f CHANGELOG.md docs/",
"build:example": "cd examples/simple-app && yarn build --force",
"build": "yarn build:cli && yarn install:example",
"start:example": "cd examples/simple-app && yarn start --force",
"start": "yarn build && yarn start:example",
"docs": "yarn build:docs && npx serve -s docs"
}
"name": "root",
"private": true,
"workspaces": [
"cli"
],
"devDependencies": {
"@dhis2/cli-style": "^4.1.1",
"babel-eslint": "^10.0.3",
"concurrently": "^4.1.2"
},
"scripts": {
"format": "d2-style js apply --all --no-stage",
"install:example": "cd examples/simple-app && yarn install --force --check-files",
"build:cli": "cd cli && yarn build",
"build:docs": "cp -f CHANGELOG.md docs/",
"build:example": "cd examples/simple-app && yarn build --force",
"build": "yarn build:cli && yarn install:example",
"start:example": "cd examples/simple-app && yarn start --force",
"start": "yarn build && yarn start:example",
"docs": "yarn build:docs && npx serve -s docs"
},
"version": "1.1.2"
}

0 comments on commit b4f37ad

Please sign in to comment.