Skip to content

Commit ec36a2d

Browse files
Merge pull request #451 from NativeScript/ikoevska/breaking-change-010
Breaking changes in 0.10.0, bumping version to 1.0.0-RC
2 parents f0ce910 + 7fdf32f commit ec36a2d

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NativeScript CLI Changelog
22
================
33

4-
1.0.0 (2015, April 28)
4+
1.0.0-rc0 (2015, April 28)
55
==
66

77
### New
@@ -27,6 +27,13 @@ NativeScript CLI Changelog
2727
0.10.0 (2015, April 21)
2828
==
2929

30+
### Breaking
31+
32+
* Introduced new project structure. To migrate to the new structure, complete the following steps.
33+
1. Manually move all files and folders from the inner `app` folder one level up inside the outer `app` folder.
34+
1. Remove the now empty inner `app` folder.
35+
1. Verify that your project structure reflects the structure described [here](README.md#create-project).
36+
3037
### New
3138

3239
* [Implemented #388](https://github.com/NativeScript/nativescript-cli/issues/388): Improved the `--log trace` global option.

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -289,18 +289,18 @@ The CLI places the project in a new directory in the current directory. The newl
289289

290290
```
291291
MyApp/
292-
|-- app/
293-
|-- |-- app/
294-
|-- |-- App_Resources/
295-
|-- |-- |-- Android/
296-
|-- |-- `-- iOS/
297-
|-- |-- tns_modules/
298-
|-- |-- `-- .../
299-
|-- |-- LICENSE
300-
|-- |-- package.json
301-
|-- `-- README.md
302-
|-- platforms/
303-
`-- .tnsproject
292+
├── app
293+
│ ├── app.css
294+
│ ├── app.js
295+
│ ├── bootstrap.js
296+
│ ├── main-page.js
297+
│ ├── main-page.xml
298+
│ ├── App_Resources
299+
│ │ └── ...
300+
│ └── tns_modules
301+
│ └── ...
302+
└── platforms
303+
└── ...
304304
```
305305

306306
* The `app` directory is the **development space for your application**. You should modify all common and platform-specific code within this directory. When you run `prepare <Platform>`, the NativeScript CLI copies relevant content to the platform-specific folders for each target platform.

0 commit comments

Comments
 (0)