客户端库 js.txt 文件中注释的语法是什么?

What is the syntax for a comment in a client library js.txt file?

向客户端库 js.txtcss.txt 文件添加注释的语法是什么?

出现#开头的行作为注释,出现#开头的行// 作为评论。但是 /* */ 块在构建库时会导致异常。由于 #base=[root]special meaning,这让我想知道 # 是否真的 是添加评论的合适方式,或者它是否用于其他用途.这让我想知道 // 是否 真的 可以发表评论,或者 AEM 是否只是将其视为不存在的文件的相对路径。

有人知道客户端库的 js.txt 或 css.txt 文件中注释的适当语法的最终答案吗?

# 可以安全地用于 clientlibs js.txtcss.txt 的注释中。例如,Adobe 将其用于其版权免责声明:

###############################################################################
# Copyright 2016 Adobe Systems Incorporated
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################

#base=./js
modals.js

在 GitHub 上查看官方 We Retail 演示内容:We Retail Clientlib Example on www.github.com

(hash) Import-Package: *

我们必须在导入或导出我们的包时取消注释这些行。但在 js.txt 或 css.txt:

的情况下保持相同
(hash)base=js

所以(hash)是评论的方式,但有时不是评论。