Skip to content

Commit 80a2168

Browse files
committed
chore(release): 1.0.7
1 parent 26f7be5 commit 80a2168

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## 1.0.7 (2020-10-26)
2+
3+
### Bug Fixes
4+
5+
- **tools:** add `shell: true` ([#1](https://github.com/NativeScript/plugin-tools/issues/1)) ([228e404](https://github.com/NativeScript/plugin-tools/commit/228e40472e497e02500e1b2441f6dc2e0dfe87eb))
6+
7+
### Features
8+
9+
- **tools:** publish workflow ([f312505](https://github.com/NativeScript/plugin-tools/commit/f3125054c0731b60f74e25ff8eddc303c9f7c2e5))
10+
- **tools:** readme handling ([f68542c](https://github.com/NativeScript/plugin-tools/commit/f68542c322dfd2ed82a641f4df6fbc2e77b3050c))
11+
- **tools:** update to Nrwl Nx 10.3.x and TS 4 ([5376880](https://github.com/NativeScript/plugin-tools/commit/5376880c14084dc607d5d9785e129b5e4e12b546))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/plugin-tools-source",
3-
"version": "1.0.5",
3+
"version": "1.0.7",
44
"license": "MIT",
55
"private": true,
66
"scripts": {
Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
import { chain, Rule, SchematicContext, Tree } from "@angular-devkit/schematics";
2-
import { updateJsonInTree } from "@nrwl/workspace";
1+
import {
2+
chain,
3+
Rule,
4+
SchematicContext,
5+
Tree,
6+
} from '@angular-devkit/schematics';
7+
import { updateJsonInTree } from '@nrwl/workspace';
38

49
export default function (): Rule {
510
return chain([
@@ -8,11 +13,11 @@ export default function (): Rule {
813
json.devDependencies = json.devDependencies || {};
914
json.devDependencies = {
1015
...json.devDependencies,
11-
'typescript': '~4.0.3'
16+
typescript: '~4.0.3',
1217
};
13-
18+
1419
return json;
15-
})
20+
});
1621
},
1722
]);
18-
}
23+
}

packages/plugin-tools/src/schematics/publish/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,7 @@ export default function (schema: Schema): Rule {
194194

195195
const cmdArgs = ['publish', '--access', 'public'];
196196
if (packageDetails.parsedVersion.preReleaseLabel) {
197-
cmdArgs.push(
198-
`--tag`
199-
);
197+
cmdArgs.push(`--tag`);
200198
cmdArgs.push(packageDetails.parsedVersion.preReleaseType);
201199
}
202200
const child = spawn(`npm`, cmdArgs, {

0 commit comments

Comments
 (0)