Go to file
houhaoyu 5c91acc6b5 houhaoyu
update code from wagner

Signed-off-by: houhaoyu <houhaoyu@huawei.com>
Change-Id: Id554e2c583d073eaae76b1201e9422fed135c7ae
2021-12-21 17:15:23 +08:00
compiler houhaoyu 2021-12-21 17:15:23 +08:00
.gitignore houhaoyu 2021-12-21 17:15:23 +08:00
build_ets_loader_library.py houhaoyu 2021-12-21 17:15:23 +08:00
BUILD.gn houhaoyu 2021-12-21 17:15:23 +08:00
generateSysResource.py houhaoyu 2021-12-21 17:15:23 +08:00
LICENSE houhaoyu 2021-12-21 17:15:23 +08:00
OAT.xml houhaoyu 2021-12-21 17:15:23 +08:00
README.en.md lihong67@huawei.com 2021-09-03 16:17:18 +08:00
README.md lihong67@huawei.com 2021-09-03 16:17:18 +08:00

developtools_ace-ets2bundle

Description

Provide declarative paradigm syntax compilation conversion, syntax verification, rich and friendly syntax error prompting capabilities.

Software Architecture

  • compiler/src: source code
  • test: unit test file
  • .eslintrc: eslint configure
  • babel.config.js: babel configure
  • main.js: source code
  • package.json: define what libraries will be installed into node_modules when you run npm install
  • tsconfig.json: the compiler options required to compile the project
  • webpack.config.js: webpack configuration information

Prerequisites

> npm -v
  6.14.8
> node -v
  v12.18.3

Your npm and node should be of a later version. You can upgrade them to the latest stable version.

Installing

Enter the root directory of the compiler:

npm config set registry http://registry.npm.taobao.org
npm config set strict-ssl false
npm cache clean -f
npm install

Quick Start

Enter the root directory of the compiler:

npm run build
npm run compile

The sample project will be compiled. The output is in the sample/build directory.

Create a new project

Enter the root directory of the compiler:

npm run create [projectName]

Note: If projectName is empty, create the HelloAce project by default. For example, use the following line to create a project named foo:

$ npm run create foo

The directory structure of project foo:

  • foo
    • pages
      • index.ets
    • app.ets
    • manifest.json

Create a new page

For example, create a file bar.ets in the pages directory. And then add the following lines to "pages" field in manifest.json:

  "pages": [
    "pages/index",
    "pages/bar"
  ]

Compile a project

Enter the root directory of the compiler:

$ npm run build
$ npm run compile [projectName]

Note: If projectName is empty, compile the sample project by default. In the project root directory, the compilation result is in the build directory.