mirror of
https://github.com/VSCodium/policy-watcher.git
synced 2025-12-10 21:07:21 -06:00
reafctor: rename project
This commit is contained in:
parent
720f52339e
commit
b1ae919794
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -68,8 +68,5 @@
|
|||||||
"xtr1common": "cpp",
|
"xtr1common": "cpp",
|
||||||
"xtree": "cpp",
|
"xtree": "cpp",
|
||||||
"xutility": "cpp"
|
"xutility": "cpp"
|
||||||
},
|
}
|
||||||
"git.branchPrefix": "joao/",
|
|
||||||
"git.branchProtection": ["main"],
|
|
||||||
"git.branchProtectionPrompt": "alwaysCommitToNewBranch"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +1,3 @@
|
|||||||
# Microsoft Open Source Code of Conduct
|
# VSCodium Code of Conduct
|
||||||
|
|
||||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
This project has adopted the [VSCodium Code of Conduct](https://github.com/VSCodium/vscodium/blob/master/CODE_OF_CONDUCT.md).
|
||||||
|
|
||||||
Resources:
|
|
||||||
|
|
||||||
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
|
|
||||||
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
|
|
||||||
- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns
|
|
||||||
|
|||||||
35
LICENSE
35
LICENSE
@ -1,21 +1,22 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) Microsoft Corporation.
|
Copyright (c) 2025-present The VSCodium contributors
|
||||||
|
Copyright (c) 2022-present Microsoft Corporation.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
in the Software without restriction, including without limitation the rights
|
in the Software without restriction, including without limitation the rights
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
The above copyright notice and this permission notice shall be included in all
|
||||||
copies or substantial portions of the Software.
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE
|
SOFTWARE
|
||||||
|
|||||||
37
README.md
37
README.md
@ -1,15 +1,18 @@
|
|||||||
# @vscode/policy-watcher
|
[@vscodium/policy-watcher](https://github.com/VSCodium/policy-watcher)
|
||||||
|
======================================================================
|
||||||
|
|
||||||
[](https://dev.azure.com/monacotools/Monaco/_build/latest?definitionId=459&repoName=microsoft%2Fvscode-policy-watcher&branchName=main)
|
[](https://npmjs.org/package/@vscodium/policy-watcher)
|
||||||
[](https://npmjs.org/package/@vscode/policy-watcher)
|
|
||||||
|
|
||||||
Example usage:
|
## <a id="usage"></a>Usage
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const createWatcher = require("@vscode/policy-watcher");
|
const createWatcher = require("@vscodium/policy-watcher");
|
||||||
|
|
||||||
createWatcher(
|
createWatcher(
|
||||||
"CodeOSS",
|
// domain name
|
||||||
|
"VSCodium",
|
||||||
|
// product name
|
||||||
|
"VSCodium",
|
||||||
{
|
{
|
||||||
UpdateMode: { type: "string" },
|
UpdateMode: { type: "string" },
|
||||||
SCMInputFontSize: { type: "number" },
|
SCMInputFontSize: { type: "number" },
|
||||||
@ -18,24 +21,6 @@ createWatcher(
|
|||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
## Contributing
|
## <a id="license"></a>License
|
||||||
|
|
||||||
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
[MIT](https://github.com/VSCodium/policy-watcher/blob/master/LICENSE)
|
||||||
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
|
|
||||||
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
|
|
||||||
|
|
||||||
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
|
|
||||||
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
|
|
||||||
provided by the bot. You will only need to do this once across all repos using our CLA.
|
|
||||||
|
|
||||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
|
||||||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
|
|
||||||
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
|
||||||
|
|
||||||
## Trademarks
|
|
||||||
|
|
||||||
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
|
|
||||||
trademarks or logos is subject to and must follow
|
|
||||||
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
|
||||||
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
||||||
Any use of third-party trademarks or logos are subject to those third-party's policies.
|
|
||||||
@ -6,7 +6,7 @@ This project uses GitHub Issues to track bugs and feature requests. Please searc
|
|||||||
issues before filing new issues to avoid duplicates. For new issues, file your bug or
|
issues before filing new issues to avoid duplicates. For new issues, file your bug or
|
||||||
feature request as a new Issue.
|
feature request as a new Issue.
|
||||||
|
|
||||||
For help and questions about using this project, please use the [issue tracker](https://github.com/microsoft/vscode-policy-watcher/issues).
|
For help and questions about using this project, please use the [issue tracker](https://github.com/vscodium/policy-watcher/issues).
|
||||||
|
|
||||||
## Microsoft Support Policy
|
## Microsoft Support Policy
|
||||||
|
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@vscode/policy-watcher",
|
"name": "@vscodium/policy-watcher",
|
||||||
"version": "1.1.8",
|
"version": "1.1.8",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@vscode/policy-watcher",
|
"name": "@vscodium/policy-watcher",
|
||||||
"version": "1.1.8",
|
"version": "1.1.8",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@vscode/policy-watcher",
|
"name": "@vscodium/policy-watcher",
|
||||||
"version": "1.1.8",
|
"version": "1.1.8",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/microsoft/vscode-policy-watcher.git"
|
"url": "git+https://github.com/vscodium/policy-watcher.git"
|
||||||
},
|
},
|
||||||
"author": "João Moreno",
|
"author": "João Moreno",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user