Skip to content

Commit 85f8b87

Browse files
committed
chore: 9.0.0-beta.0
1 parent 0bacc61 commit 85f8b87

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ This includes the following steps:
141141
In a code sharing project to build:
142142

143143
* a `web` app call: `ng serve`,
144-
* an `iOS` app call: `tns run ios --bundle --env.aot`,
145-
* an `Android` app call: `tns run android --bundle --env.aot`
144+
* an `iOS` app call: `tns run ios --env.aot`,
145+
* an `Android` app call: `tns run android --env.aot`
146146

147147
## Templates
148148

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/schematics",
3-
"version": "9.0.0",
3+
"version": "9.0.0-beta.0",
44
"description": "Schematics for NativeScript Angular apps.",
55
"scripts": {
66
"build": "tsc -p tsconfig.json",
@@ -53,7 +53,8 @@
5353
},
5454
"contributors": [
5555
"Stanimira Vlaeva <Stanimira.Vlaeva@progress.com>",
56-
"Sebastian Witalec <Sebastian.Witalec@progress.com>"
56+
"Sebastian Witalec <Sebastian.Witalec@progress.com>",
57+
"Danny Koppenhagen <d-koppenhagen>"
5758
],
5859
"license": "Apache-2.0"
5960
}

src/add-ns/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ const addRunScriptsToPackageJson = (tree: Tree, context: SchematicContext) => {
228228
mobile: 'tns run',
229229
preview: 'tns preview',
230230
ngcc: 'ngcc --properties es2015 module main --first-only',
231-
postinstall: 'npm run ngcc'
231+
postinstall: 'npm run ngcc',
232232
};
233233
packageJson.scripts = {...scriptsToAdd, ...packageJson.scripts};
234234

@@ -368,7 +368,7 @@ const addDependencies = () => (tree: Tree, context: SchematicContext) => {
368368
'@nativescript/core': '~6.5.5',
369369
'@nativescript/theme': '~2.2.1',
370370
'reflect-metadata': '~0.1.12',
371-
'tslib': '1.10.0',
371+
tslib: '1.10.0',
372372
};
373373
packageJson.dependencies = {...depsToAdd, ...packageJson.dependencies};
374374

0 commit comments

Comments
 (0)