Skip to content

Commit 5e02596

Browse files
committed
chore: release
1 parent 771c523 commit 5e02596

11 files changed

+66
-9
lines changed

.headerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
node_modules
66
.*\.git
77
.*\.github
8+
.*\.husky
89
.*\.editorconfig
910
.*\.gitignore
1011
.*\.jshintrc

build/checkHeader.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
*/
1919

2020
const fs = require('fs');
21+
const chalk = require('chalk');
2122
const preamble = require('./preamble');
2223
const eachFile = require('./headerUtil').eachFile;
2324

@@ -34,11 +35,11 @@ function run() {
3435
});
3536

3637
if (missingFiles.length) {
37-
console.error('Files missing license header:');
38+
console.error(chalk.red('Files missing license header:'));
3839
missingFiles.forEach(function (path) {
39-
console.error(path);
40+
console.error(chalk.red(path));
4041
});
41-
console.error('\nPlease run `node build/addHeader.js` before commit.');
42+
console.error(chalk.red('\nPlease run `node build/addHeader.js` before commit.'));
4243
process.exit(1);
4344
}
4445
}

build/preamble.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
* under the License.
1818
*/
1919

20-
const cStyleComment = `/*
20+
const cStyleComment = `
21+
/*
2122
* Licensed to the Apache Software Foundation (ASF) under one
2223
* or more contributor license agreements. See the NOTICE file
2324
* distributed with this work for additional information

dist/echarts.common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.esm.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27597,6 +27597,24 @@ function getImpl(name) {
2759727597
* AUTO-GENERATED FILE. DO NOT MODIFY.
2759827598
*/
2759927599

27600+
/*
27601+
* Licensed to the Apache Software Foundation (ASF) under one
27602+
* or more contributor license agreements. See the NOTICE file
27603+
* distributed with this work for additional information
27604+
* regarding copyright ownership. The ASF licenses this file
27605+
* to you under the Apache License, Version 2.0 (the
27606+
* "License"); you may not use this file except in compliance
27607+
* with the License. You may obtain a copy of the License at
27608+
*
27609+
* http://www.apache.org/licenses/LICENSE-2.0
27610+
*
27611+
* Unless required by applicable law or agreed to in writing,
27612+
* software distributed under the License is distributed on an
27613+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
27614+
* KIND, either express or implied. See the License for the
27615+
* specific language governing permissions and limitations
27616+
* under the License.
27617+
*/
2760027618
var customRenderers = {};
2760127619
function registerCustomSeries(type, renderItem) {
2760227620
customRenderers[type] = renderItem;

dist/echarts.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.esm.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27597,6 +27597,24 @@ function getImpl(name) {
2759727597
* AUTO-GENERATED FILE. DO NOT MODIFY.
2759827598
*/
2759927599

27600+
/*
27601+
* Licensed to the Apache Software Foundation (ASF) under one
27602+
* or more contributor license agreements. See the NOTICE file
27603+
* distributed with this work for additional information
27604+
* regarding copyright ownership. The ASF licenses this file
27605+
* to you under the Apache License, Version 2.0 (the
27606+
* "License"); you may not use this file except in compliance
27607+
* with the License. You may obtain a copy of the License at
27608+
*
27609+
* http://www.apache.org/licenses/LICENSE-2.0
27610+
*
27611+
* Unless required by applicable law or agreed to in writing,
27612+
* software distributed under the License is distributed on an
27613+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
27614+
* KIND, either express or implied. See the License for the
27615+
* specific language governing permissions and limitations
27616+
* under the License.
27617+
*/
2760027618
var customRenderers = {};
2760127619
function registerCustomSeries(type, renderItem) {
2760227620
customRenderers[type] = renderItem;

dist/echarts.esm.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/echarts.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27603,6 +27603,24 @@
2760327603
* AUTO-GENERATED FILE. DO NOT MODIFY.
2760427604
*/
2760527605

27606+
/*
27607+
* Licensed to the Apache Software Foundation (ASF) under one
27608+
* or more contributor license agreements. See the NOTICE file
27609+
* distributed with this work for additional information
27610+
* regarding copyright ownership. The ASF licenses this file
27611+
* to you under the Apache License, Version 2.0 (the
27612+
* "License"); you may not use this file except in compliance
27613+
* with the License. You may obtain a copy of the License at
27614+
*
27615+
* http://www.apache.org/licenses/LICENSE-2.0
27616+
*
27617+
* Unless required by applicable law or agreed to in writing,
27618+
* software distributed under the License is distributed on an
27619+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
27620+
* KIND, either express or implied. See the License for the
27621+
* specific language governing permissions and limitations
27622+
* under the License.
27623+
*/
2760627624
var customRenderers = {};
2760727625
function registerCustomSeries(type, renderItem) {
2760827626
customRenderers[type] = renderItem;

dist/echarts.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)