Skip to content

Commit

Permalink
Merge pull request #6 from jabraham17/prep-release
Browse files Browse the repository at this point in the history
Add License info to source files
  • Loading branch information
jabraham17 authored Mar 6, 2024
2 parents ac4358e + 643509d commit 57cac4e
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"engines": {
"vscode": "^1.70.0"
},
"publisher": "chapel",
"publisher": "chpl-hpe",
"author": {
"name": "chapel"
"name": "Chapel"
},
"categories": [
"Programming Languages",
Expand Down
19 changes: 19 additions & 0 deletions src/ChapelLanguageClient.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Copyright 2024-2024 Hewlett Packard Enterprise Development LP
* Other additional copyright holders may be indicated within.
*
* The entirety of this work is 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.
*/

import { ToolConfig, getChplDeveloper } from "./configuration";
import * as fs from "fs";
import * as vscode from "vscode";
Expand Down
19 changes: 19 additions & 0 deletions src/ChplPaths.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Copyright 2024-2024 Hewlett Packard Enterprise Development LP
* Other additional copyright holders may be indicated within.
*
* The entirety of this work is 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.
*/

import * as path from "path";
import * as fs from "fs";
import * as vscode from "vscode";
Expand Down
18 changes: 18 additions & 0 deletions src/configuration.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* Copyright 2024-2024 Hewlett Packard Enterprise Development LP
* Other additional copyright holders may be indicated within.
*
* The entirety of this work is 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.
*/

import * as vscode from "vscode";

Expand Down
19 changes: 19 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* Copyright 2024-2024 Hewlett Packard Enterprise Development LP
* Other additional copyright holders may be indicated within.
*
* The entirety of this work is 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.
*/

import * as vscode from "vscode";
import {
getChplHome,
Expand Down

0 comments on commit 57cac4e

Please sign in to comment.