diff --git a/main.go b/main.go index c03b554..295aeb1 100644 --- a/main.go +++ b/main.go @@ -207,7 +207,7 @@ func licenseHeader(path string, tmpl *template.Template, data *copyrightData) ([ return nil, nil case ".c", ".h": lic, err = prefix(tmpl, data, "/*", " * ", " */") - case ".js", ".jsx", ".tsx", ".css", ".tf", ".ts": + case ".js", ".mjs", ".cjs", ".jsx", ".tsx", ".css", ".tf", ".ts": lic, err = prefix(tmpl, data, "/**", " * ", " */") case ".cc", ".cpp", ".cs", ".go", ".hh", ".hpp", ".java", ".m", ".mm", ".proto", ".rs", ".scala", ".swift", ".dart", ".groovy", ".kt", ".kts": lic, err = prefix(tmpl, data, "", "// ", "") diff --git a/testdata/expected/file.cjs b/testdata/expected/file.cjs new file mode 100644 index 0000000..932f11d --- /dev/null +++ b/testdata/expected/file.cjs @@ -0,0 +1,22 @@ +/** + * Copyright 2018 Google LLC + * + * 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. + */ + +function dummy() { + console.log('hello world!'); +} + +module.exports = dummy + diff --git a/testdata/expected/file.mjs b/testdata/expected/file.mjs new file mode 100644 index 0000000..f2062fd --- /dev/null +++ b/testdata/expected/file.mjs @@ -0,0 +1,22 @@ +/** + * Copyright 2018 Google LLC + * + * 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. + */ + +function dummy() { + console.log('hello world!'); +} + +export default dummy + diff --git a/testdata/initial/file.cjs b/testdata/initial/file.cjs new file mode 100644 index 0000000..9d3942b --- /dev/null +++ b/testdata/initial/file.cjs @@ -0,0 +1,6 @@ +function dummy() { + console.log('hello world!'); +} + +module.exports = dummy + diff --git a/testdata/initial/file.mjs b/testdata/initial/file.mjs new file mode 100644 index 0000000..acf5877 --- /dev/null +++ b/testdata/initial/file.mjs @@ -0,0 +1,6 @@ +function dummy() { + console.log('hello world!'); +} + +export default dummy +