developtools_ace_ets2bundle/compiler
s00912778 26be260f48 shijiakai2@huawei.com
add copyright to utForValidate

Signed-off-by: s00912778 <shijiakai2@huawei.com>
Change-Id: I1341382b5d30a87ae5aa834a8391f15ca5561815
2024-10-26 09:45:36 +08:00
..
codegen revert modification of supervisual 2024-07-23 20:16:55 +08:00
components search组件双向绑定属性补充 2024-08-29 16:57:14 +08:00
config Confusion optimization 2024-08-02 17:18:30 +08:00
form_components etsBundle添加customStyle 2024-04-07 13:52:10 +08:00
sample
script Fix codeCheck warnings for "$target_dir" 2024-07-25 16:15:34 +08:00
server jiangbo91@huawei.com 2024-06-11 14:36:37 +08:00
src !3785 Modify the parent-child relationship of dotting information 2024-09-27 10:50:12 +00:00
test shijiakai2@huawei.com 2024-10-26 09:45:36 +08:00
.eslintrc
.jscpd.json
.nycrc
babel.config.js
build_declarations_file.js 添加新组件LinearIndicator的SDK配置信息 2024-08-27 19:53:09 +08:00
build_kitConfigs_file.js add arkts resolve path 2024-03-26 06:31:49 +00:00
compile_plugin.js jiangbo91@huawei.com 2024-06-04 11:00:08 +08:00
main.js jiangbo91@huawei.com 2024-09-30 14:10:15 +08:00
npm-install.js
package-lock.json
package.json shijiakai2@huawei.com 2024-10-22 21:00:26 +08:00
README.md
rollup.config.js
tsconfig.esm.json add platformview 2024-09-29 09:46:07 +08:00
tsconfig.json 添加新组件LinearIndicator的SDK配置信息 2024-08-27 19:53:09 +08:00
uglify-source.js jiangbo91@huawei.com 2024-05-19 11:21:53 +08:00
webpack.config.js jiangbo91@huawei.com 2024-05-19 11:21:53 +08:00
如何新增或修改组件指导规范.md fix public sdk contains systemapi 2024-01-13 18:56:04 +08:00

compiler

The compiler tool chain for ace2.0.

Usage

Here are simplified instructions of how to get started. The following commands work both on Windows and Linux platforms.

1. Install

First, enter the root directory of the compiler:

$ cd compiler/

And then install the npm dependencies(You must have node&npm installed):

$ npm install

Note: If some errors occur, delete the generated package node_modules, please check the following items:

First, check whether your node version is 12.x or later; Secondly, config npm proxy and run npm install again.

npm config set strict-ssl false
npm config set registry https://registry.npm.taobao.org

2. Quick Start

For a quick start

In the root directory of compiler/:

$ npm run build
$ npm run compile

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

3. Create a new project

The way to create a new project

In the root directory of compiler/:

$ npm run build
$ 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

4. Create a new page

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

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

5. Compile a project

The way to compile a project

In the root directory of 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.