pascal-vscode 0.0.0 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,18 +1,18 @@
1
- name: Label Issue
2
-
3
- on:
4
- issues:
5
- types:
6
- - opened
7
-
8
- jobs:
9
- triage:
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4
14
- with:
15
- repo-token: '${{ secrets.GITHUB_TOKEN }}'
16
- configuration-path: .github/issue_labeler.yml
17
- not-before: 2023-01-13T10:25:03.847Z
18
- enable-versioned-regex: 0
1
+ name: Label Issue
2
+
3
+ on:
4
+ issues:
5
+ types:
6
+ - opened
7
+
8
+ jobs:
9
+ triage:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4
14
+ with:
15
+ repo-token: '${{ secrets.GITHUB_TOKEN }}'
16
+ configuration-path: .github/issue_labeler.yml
17
+ not-before: 2023-01-13T10:25:03.847Z
18
+ enable-versioned-regex: 0
@@ -1,16 +1,16 @@
1
- # Automatically labels PRs based on the configuration file
2
- # you are probably looking for 👉 `.github/labeler.yml`
3
- name: Label PRs
4
-
5
- on:
6
- - pull_request_target
7
-
8
- jobs:
9
- triage:
10
- runs-on: ubuntu-latest
11
- if: ${{ github.repository_owner == 'hadez8877' }}
12
- steps:
13
- - uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0
14
- with:
15
- repo-token: '${{ secrets.GITHUB_TOKEN }}'
16
- sync-labels: true
1
+ # Automatically labels PRs based on the configuration file
2
+ # you are probably looking for 👉 `.github/labeler.yml`
3
+ name: Label PRs
4
+
5
+ on:
6
+ - pull_request_target
7
+
8
+ jobs:
9
+ triage:
10
+ runs-on: ubuntu-latest
11
+ if: ${{ github.repository_owner == 'hadez8877' }}
12
+ steps:
13
+ - uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0
14
+ with:
15
+ repo-token: '${{ secrets.GITHUB_TOKEN }}'
16
+ sync-labels: true
@@ -1,49 +1,49 @@
1
- name: Lint pull request title
2
-
3
- on:
4
- pull_request:
5
- types:
6
- - opened
7
- - edited
8
- - synchronize
9
- - reopened
10
-
11
- permissions: {}
12
-
13
- jobs:
14
- main:
15
- name: Validate PR title
16
- runs-on: ubuntu-latest
17
- timeout-minutes: 5
18
- permissions:
19
- contents: read # Checkout only
20
- steps:
21
- - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
22
- env:
23
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
- with:
25
- # Configure which types are allowed (newline-delimited).
26
- types: |
27
- chore
28
- build
29
- ci
30
- docs
31
- feat
32
- fix
33
- perf
34
- refactor
35
- revert
36
- style
37
- test
38
- types
39
- # Scopes are not allowed.
40
- scopes: ''
41
- # Configure additional validation for the subject based on a regex.
42
- # Ensures that the subject starts with a lowercase character.
43
- subjectPattern: ^[a-z].*$
44
- # If `subjectPattern` is configured, you can use this property to override
45
- # the default error message that is shown when the pattern doesn't match.
46
- # The variables `subject` and `title` can be used within the message.
47
- subjectPatternError: |
48
- The subject "{subject}" found in the pull request title "{title}" doesn't match the configured pattern.
49
- Please ensure that the subject starts with a lowercase character.
1
+ name: Lint pull request title
2
+
3
+ on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - edited
8
+ - synchronize
9
+ - reopened
10
+
11
+ permissions: {}
12
+
13
+ jobs:
14
+ main:
15
+ name: Validate PR title
16
+ runs-on: ubuntu-latest
17
+ timeout-minutes: 5
18
+ permissions:
19
+ contents: read # Checkout only
20
+ steps:
21
+ - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ with:
25
+ # Configure which types are allowed (newline-delimited).
26
+ types: |
27
+ chore
28
+ build
29
+ ci
30
+ docs
31
+ feat
32
+ fix
33
+ perf
34
+ refactor
35
+ revert
36
+ style
37
+ test
38
+ types
39
+ # Scopes are not allowed.
40
+ scopes: ''
41
+ # Configure additional validation for the subject based on a regex.
42
+ # Ensures that the subject starts with a lowercase character.
43
+ subjectPattern: ^[a-z].*$
44
+ # If `subjectPattern` is configured, you can use this property to override
45
+ # the default error message that is shown when the pattern doesn't match.
46
+ # The variables `subject` and `title` can be used within the message.
47
+ subjectPatternError: |
48
+ The subject "{subject}" found in the pull request title "{title}" doesn't match the configured pattern.
49
+ Please ensure that the subject starts with a lowercase character.
@@ -1,67 +1,69 @@
1
- name: Release
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- release:
10
- name: Changelog PR or Release
11
- if: ${{ github.repository_owner == 'hadez8877' }}
12
- runs-on: ubuntu-latest
13
-
14
- steps:
15
- - name: Checkout
16
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
- with:
18
- # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
19
- fetch-depth: 0
20
-
21
- - name: setup PNPM
22
- uses: ./.github/actions/setup-pnpm
23
-
24
- - name: Setup Node
25
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
26
- with:
27
- node-version: 24.16.0
28
-
29
- - name: Setup git commiter
30
- id: commiter
31
- uses: ./.github/actions/setup-git-commiter
32
- with:
33
- pascal-client-id: ${{ vars.PASCAL_CLIENT_ID }}
34
- pascal-app-secret: ${{ secrets.PASCAL_APP_SECRET }}
35
-
36
- - name: Build extension
37
- run: pnpm run build
38
-
39
- - name: Create Release Pull Request or Publish
40
- id: changesets
41
- uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0
42
- with:
43
- # Note: pnpm install after versioning is necessary to refresh lockfile
44
- version: pnpm run version
45
- publish: pnpm exec changeset publish
46
- commit: '[ci] release'
47
- title: '[ci] release'
48
- env:
49
- # Needs access to push to main
50
- GITHUB_TOKEN: ${{ steps.commiter.outputs.token }}
51
- # Use OIDC for npm authentication instead of NPM_TOKEN
52
- NPM_TOKEN: '' # https://github.com/changesets/changesets/issues/1152#issuecomment-3190884868
53
-
54
- - name: Check if pascal-vscode was published
55
- id: vscode-published
56
- if: steps.changesets.outputs.published == 'true'
57
- run: |
58
- if echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -e '.[] | select(.name == "pascal-vscode")' > /dev/null; then
59
- echo "published=true" >> $GITHUB_OUTPUT
60
- else
61
- echo "published=false" >> $GITHUB_OUTPUT
62
- fi
63
-
64
- - name: Publish to OpenVSX
65
- if: steps.vscode-published.outputs.published == 'true'
66
- run: |
67
- pnpm exec ovsx publish -p ${{ secrets.OVSX_TOKEN }}
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ release:
10
+ name: Changelog PR or Release
11
+ if: ${{ github.repository_owner == 'hadez8877' }}
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: write
15
+ id-token: write
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19
+ with:
20
+ # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
21
+ fetch-depth: 0
22
+
23
+ - name: setup PNPM
24
+ uses: ./.github/actions/setup-pnpm
25
+
26
+ - name: Setup Node
27
+ uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
28
+ with:
29
+ node-version: 24.16.0
30
+
31
+ - name: Setup git commiter
32
+ id: commiter
33
+ uses: ./.github/actions/setup-git-commiter
34
+ with:
35
+ pascal-client-id: ${{ vars.PASCAL_CLIENT_ID }}
36
+ pascal-app-secret: ${{ secrets.PASCAL_APP_SECRET }}
37
+
38
+ - name: Build extension
39
+ run: pnpm run build
40
+
41
+ - name: Create Release Pull Request or Publish
42
+ id: changesets
43
+ uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0
44
+ with:
45
+ # Note: pnpm install after versioning is necessary to refresh lockfile
46
+ version: pnpm run version
47
+ publish: pnpm exec changeset publish
48
+ commit: '[ci] release'
49
+ title: '[ci] release'
50
+ env:
51
+ # Needs access to push to main
52
+ GITHUB_TOKEN: ${{ steps.commiter.outputs.token }}
53
+ # Use OIDC for npm authentication instead of NPM_TOKEN
54
+ NPM_TOKEN: '' # https://github.com/changesets/changesets/issues/1152#issuecomment-3190884868
55
+
56
+ - name: Check if pascal-vscode was published
57
+ id: vscode-published
58
+ if: steps.changesets.outputs.published == 'true'
59
+ run: |
60
+ if echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -e '.[] | select(.name == "pascal-vscode")' > /dev/null; then
61
+ echo "published=true" >> $GITHUB_OUTPUT
62
+ else
63
+ echo "published=false" >> $GITHUB_OUTPUT
64
+ fi
65
+
66
+ - name: Publish to OpenVSX
67
+ if: steps.vscode-published.outputs.published == 'true'
68
+ run: |
69
+ pnpm exec ovsx publish -p ${{ secrets.OVSX_TOKEN }}
package/.prettierignore CHANGED
@@ -1,25 +1,25 @@
1
- # Deep Directories
2
- **/dist
3
- **/node_modules
4
- **/.vscode-test
5
-
6
- # Directories
7
- .github
8
- .changeset
9
-
10
- # Files
11
- vitest.config.ts.timestamp*
12
- pnpm-lock.yaml
13
-
14
- # Formatted by Biome
15
- **/*.json
16
- **/*.jsonc
17
- **/*.js
18
- **/*.ts
19
- **/*.tsx
20
- **/*.jsx
21
- **/*.mjs
22
- **/*.cjs
23
- **/*.css
24
-
25
- CHANGELOG.md
1
+ # Deep Directories
2
+ **/dist
3
+ **/node_modules
4
+ **/.vscode-test
5
+
6
+ # Directories
7
+ .github
8
+ .changeset
9
+
10
+ # Files
11
+ vitest.config.ts.timestamp*
12
+ pnpm-lock.yaml
13
+
14
+ # Formatted by Biome
15
+ **/*.json
16
+ **/*.jsonc
17
+ **/*.js
18
+ **/*.ts
19
+ **/*.tsx
20
+ **/*.jsx
21
+ **/*.mjs
22
+ **/*.cjs
23
+ **/*.css
24
+
25
+ CHANGELOG.md
package/.vscodeignore CHANGED
@@ -1,32 +1,32 @@
1
- # IDE and test files
2
- .vscode/**
3
- .vscode-test/**
4
-
5
- # Source files
6
- src/**
7
- scripts/**
8
-
9
- # Configuration files
10
- .gitignore
11
- .yarnrc
12
- **/tsconfig.json
13
- **/eslint.config.js
14
- **/biome.jsonc
15
- **/prettier.config.mjs
16
- .eslintcache
17
- .prettierignore
18
-
19
- # Build artifacts
20
- **/*.map
21
-
22
- # Documentation
23
- vsc-extension-quickstart.md
24
-
25
- # Version control and CI
26
- .github/**
27
- .changeset/**
28
-
29
- # Dependencies
30
- node_modules/**
31
- pnpm-lock.yaml
32
-
1
+ # IDE and test files
2
+ .vscode/**
3
+ .vscode-test/**
4
+
5
+ # Source files
6
+ src/**
7
+ scripts/**
8
+
9
+ # Configuration files
10
+ .gitignore
11
+ .yarnrc
12
+ **/tsconfig.json
13
+ **/eslint.config.js
14
+ **/biome.jsonc
15
+ **/prettier.config.mjs
16
+ .eslintcache
17
+ .prettierignore
18
+
19
+ # Build artifacts
20
+ **/*.map
21
+
22
+ # Documentation
23
+ vsc-extension-quickstart.md
24
+
25
+ # Version control and CI
26
+ .github/**
27
+ .changeset/**
28
+
29
+ # Dependencies
30
+ node_modules/**
31
+ pnpm-lock.yaml
32
+
package/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
- # pascal
2
-
3
- ## 0.0.1
4
-
5
- ### Patch Changes
6
-
7
- - [`b8ff049`](https://github.com/hadez8877/pascal/commit/b8ff04919ecc00cd1e960ac782a2121888708b81) Thanks [@hadez8877](https://github.com/hadez8877)! - 🎉 Launch initial release
1
+ # pascal
2
+
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`b8ff049`](https://github.com/hadez8877/pascal/commit/b8ff04919ecc00cd1e960ac782a2121888708b81) Thanks [@hadez8877](https://github.com/hadez8877)! - 🎉 Launch initial release
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Fabricio Pasapera Viera (@Hadez)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Fabricio Pasapera Viera (@Hadez)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/assets/icon.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="-0 -0 256 256"><defs><linearGradient id="g" x2="0" y2="1"><stop stop-color="#111"/><stop offset="1" stop-color="#444"/></linearGradient></defs><path fill="#f7f7f7" stroke="url(#g)" stroke-linecap="round" stroke-linejoin="round" stroke-width="28" d="M141.56 31.47c.743-.01 1.49-.018 2.25-.027 2.45-.022 4.9-.015 7.35-.006q2.56-.008 5.12-.02 5.36-.014 10.72.01c4.58.017 9.15-.007 13.73-.042 3.52-.022 7.05-.02 10.57-.012q2.53 0 5.06-.02a416 416 0 0 1 7.8.02l2.1-.036c3.85.076 5.36.59 8.36 3.08 3.27 4.05 3.44 6.37 3.09 11.59-1.93 3.85-4.28 6.42-7.5 9.25l-2.69 2.36c-3.65 3.1-7.37 6.12-11.09 9.14-2.64 2.19-5.19 4.44-7.72 6.75-4.36 3.97-8.86 7.71-13.44 11.41-3.24 2.64-6.41 5.35-9.56 8.09.67 3.31 1.91 5.94 3.52 8.9.52.96 1.04 1.92 1.58 2.91l1.71 3.12 1.77 3.25c4.67 8.53 9.47 16.98 14.32 25.41 5.17 8.99 10.2 18.07 15.26 27.12q2.86 5.11 5.72 10.21l1.92 3.43 3.65 6.49a739 739 0 0 1 3.19 5.75 135 135 0 0 0 3.29 5.55c1.55 4.24 1.55 7.59.043 11.86-2.29 3.23-5.02 5.83-7.94 8.5l-2.25 2.16c-4.62 4.41-6.76 6.45-13.28 6.52l-3.52.048-3.88.036-4.08.05c-12.43.144-24.87.22-37.3.278-9.18.045-18.36.122-27.55.242-6.46.082-12.93.12-19.39.14-3.86.01-7.71.04-11.56.106-27.82.478-27.82.478-35.44-5.92A109 109 0 0 1 50 214a137 137 0 0 0-4.66-3.71 1893 1893 0 0 1-3.96-3.22l-2.06-1.67c-8.67-7.05-8.67-7.05-9.25-11.71-.295-3.62-.053-4.71 1.62-8.12 2.65-2.94 4.55-4.34 8.5-4.84l2.4-.04 2.73-.061 2.92-.035 3.01-.059c3.17-.06 6.34-.106 9.51-.152l6.45-.117q7.9-.143 15.8-.258l-1.42-1.39a3550 3550 0 0 1-14.65-14.41q-2.73-2.69-5.47-5.37c-2.63-2.57-5.25-5.16-7.86-7.75l-2.47-2.39c-8.29-8.29-9.52-14.35-9.58-25.97l.008-4.39-.015-4.56q-.013-4.76.003-9.53c.011-4.06-.009-8.12-.038-12.18-.018-3.14-.018-6.27-.012-9.41q0-2.24-.019-4.49c-.015-2.09-.004-4.19.013-6.28v-3.6C42.11 64.31 43.52 62.13 46 59c3.37-2.15 6.66-2.45 10.62-1.89 5.57 2.09 9.6 7.28 13.66 11.49q1.59 1.61 3.19 3.22c2.79 2.82 5.56 5.66 8.32 8.5 2.83 2.9 5.68 5.78 8.53 8.67A3680 3680 0 0 1 107 106c3.09-7.32 5.56-14.72 7.82-22.32l1.04-3.47q1.63-5.45 3.26-10.89 1.1-3.67 2.21-7.35 2.02-6.73 4.04-13.47l.88-2.9a84 84 0 0 0 1.24-4.75c1.77-7.74 6.71-9.45 14.07-9.38" paint-order="stroke fill"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="-0 -0 256 256"><defs><linearGradient id="g" x2="0" y2="1"><stop stop-color="#111"/><stop offset="1" stop-color="#444"/></linearGradient></defs><path fill="#f7f7f7" stroke="url(#g)" stroke-linecap="round" stroke-linejoin="round" stroke-width="28" d="M141.56 31.47c.743-.01 1.49-.018 2.25-.027 2.45-.022 4.9-.015 7.35-.006q2.56-.008 5.12-.02 5.36-.014 10.72.01c4.58.017 9.15-.007 13.73-.042 3.52-.022 7.05-.02 10.57-.012q2.53 0 5.06-.02a416 416 0 0 1 7.8.02l2.1-.036c3.85.076 5.36.59 8.36 3.08 3.27 4.05 3.44 6.37 3.09 11.59-1.93 3.85-4.28 6.42-7.5 9.25l-2.69 2.36c-3.65 3.1-7.37 6.12-11.09 9.14-2.64 2.19-5.19 4.44-7.72 6.75-4.36 3.97-8.86 7.71-13.44 11.41-3.24 2.64-6.41 5.35-9.56 8.09.67 3.31 1.91 5.94 3.52 8.9.52.96 1.04 1.92 1.58 2.91l1.71 3.12 1.77 3.25c4.67 8.53 9.47 16.98 14.32 25.41 5.17 8.99 10.2 18.07 15.26 27.12q2.86 5.11 5.72 10.21l1.92 3.43 3.65 6.49a739 739 0 0 1 3.19 5.75 135 135 0 0 0 3.29 5.55c1.55 4.24 1.55 7.59.043 11.86-2.29 3.23-5.02 5.83-7.94 8.5l-2.25 2.16c-4.62 4.41-6.76 6.45-13.28 6.52l-3.52.048-3.88.036-4.08.05c-12.43.144-24.87.22-37.3.278-9.18.045-18.36.122-27.55.242-6.46.082-12.93.12-19.39.14-3.86.01-7.71.04-11.56.106-27.82.478-27.82.478-35.44-5.92A109 109 0 0 1 50 214a137 137 0 0 0-4.66-3.71 1893 1893 0 0 1-3.96-3.22l-2.06-1.67c-8.67-7.05-8.67-7.05-9.25-11.71-.295-3.62-.053-4.71 1.62-8.12 2.65-2.94 4.55-4.34 8.5-4.84l2.4-.04 2.73-.061 2.92-.035 3.01-.059c3.17-.06 6.34-.106 9.51-.152l6.45-.117q7.9-.143 15.8-.258l-1.42-1.39a3550 3550 0 0 1-14.65-14.41q-2.73-2.69-5.47-5.37c-2.63-2.57-5.25-5.16-7.86-7.75l-2.47-2.39c-8.29-8.29-9.52-14.35-9.58-25.97l.008-4.39-.015-4.56q-.013-4.76.003-9.53c.011-4.06-.009-8.12-.038-12.18-.018-3.14-.018-6.27-.012-9.41q0-2.24-.019-4.49c-.015-2.09-.004-4.19.013-6.28v-3.6C42.11 64.31 43.52 62.13 46 59c3.37-2.15 6.66-2.45 10.62-1.89 5.57 2.09 9.6 7.28 13.66 11.49q1.59 1.61 3.19 3.22c2.79 2.82 5.56 5.66 8.32 8.5 2.83 2.9 5.68 5.78 8.53 8.67A3680 3680 0 0 1 107 106c3.09-7.32 5.56-14.72 7.82-22.32l1.04-3.47q1.63-5.45 3.26-10.89 1.1-3.67 2.21-7.35 2.02-6.73 4.04-13.47l.88-2.9a84 84 0 0 0 1.24-4.75c1.77-7.74 6.71-9.45 14.07-9.38" paint-order="stroke fill"/></svg>
package/package.json CHANGED
@@ -1,78 +1,77 @@
1
- {
2
- "name": "pascal-vscode",
3
- "displayName": "Pascal",
4
- "publisher": "hadez8877",
5
- "description": "A modern dark theme for many editors, shells, and more!",
6
- "version": "0.0.0",
7
- "type": "module",
8
- "main": "dist/extension.js",
9
- "browser": "dist/browser.js",
10
- "categories": [
11
- "Themes"
12
- ],
13
- "icon": "assets/icon.png",
14
- "activationEvents": [
15
- "onStartupFinished"
16
- ],
17
- "contributes": {
18
- "themes": [
19
- {
20
- "label": "Pascal (Default)",
21
- "uiTheme": "vs-dark",
22
- "path": "themes/default.json"
23
- }
24
- ]
25
- },
26
- "configuration": {
27
- "title": "Pascal",
28
- "properties": {
29
- "pascal.editorTheme": {
30
- "type": "string",
31
- "default": "Pascal (Default)",
32
- "markdownDescription": "Switch to different editor theme",
33
- "enum": [
34
- "Pascal (Default)"
35
- ]
36
- }
37
- }
38
- },
39
- "repository": {
40
- "type": "git",
41
- "url": "https://github.com/hadez8877/pascal.git"
42
- },
43
- "bugs": {
44
- "url": "https://github.com/hadez8877/pascal/issues"
45
- },
46
- "scripts": {
47
- "build": "tsc -b && node scripts/build.js --minify",
48
- "lint": "biome lint . && eslint --cache --concurrency=auto .",
49
- "format": "pnpm run format:code && pnpm run format:imports",
50
- "format:code": "biome format --write && prettier -w \"**/*\" --ignore-unknown --cache",
51
- "format:imports": "biome check --formatter-enabled=false --write",
52
- "version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format"
53
- },
54
- "devDependencies": {
55
- "@biomejs/biome": "2.4.15",
56
- "@changesets/changelog-github": "^0.5.2",
57
- "@changesets/cli": "^2.29.8",
58
- "@types/node": "^24.10.1",
59
- "@types/vscode": "^1.88.0",
60
- "@vscode/vsce": "^3.9.2",
61
- "esbuild": "0.27.3",
62
- "eslint": "^10.4.0",
63
- "eslint-plugin-regexp": "^3.1.1",
64
- "ovsx": "^0.10.10",
65
- "piccolore": "0.1.3",
66
- "prettier": "^3.8.4",
67
- "tinyglobby": "0.2.16",
68
- "tsdown": "^0.22.2",
69
- "typescript": "~6.0.3",
70
- "typescript-eslint": "^8.56.1"
71
- },
72
- "license": "MIT",
73
- "engines": {
74
- "node": ">=22.12.0",
75
- "vscode": "^1.88.0"
76
- },
77
- "packageManager": "pnpm@11.9.0"
78
- }
1
+ {
2
+ "name": "pascal-vscode",
3
+ "displayName": "Pascal",
4
+ "publisher": "hadez8877",
5
+ "description": "A modern dark theme for many editors, shells, and more!",
6
+ "version": "0.0.2",
7
+ "type": "module",
8
+ "main": "dist/extension.js",
9
+ "browser": "dist/browser.js",
10
+ "categories": [
11
+ "Themes"
12
+ ],
13
+ "icon": "assets/icon.png",
14
+ "activationEvents": [
15
+ "onStartupFinished"
16
+ ],
17
+ "contributes": {
18
+ "themes": [
19
+ {
20
+ "label": "Pascal (Default)",
21
+ "uiTheme": "vs-dark",
22
+ "path": "themes/default.json"
23
+ }
24
+ ]
25
+ },
26
+ "configuration": {
27
+ "title": "Pascal",
28
+ "properties": {
29
+ "pascal.editorTheme": {
30
+ "type": "string",
31
+ "default": "Pascal (Default)",
32
+ "markdownDescription": "Switch to different editor theme",
33
+ "enum": [
34
+ "Pascal (Default)"
35
+ ]
36
+ }
37
+ }
38
+ },
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/hadez8877/pascal.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/hadez8877/pascal/issues"
45
+ },
46
+ "devDependencies": {
47
+ "@biomejs/biome": "2.4.15",
48
+ "@changesets/changelog-github": "^0.5.2",
49
+ "@changesets/cli": "^2.29.8",
50
+ "@types/node": "^24.10.1",
51
+ "@types/vscode": "^1.88.0",
52
+ "@vscode/vsce": "^3.9.2",
53
+ "esbuild": "0.27.3",
54
+ "eslint": "^10.4.0",
55
+ "eslint-plugin-regexp": "^3.1.1",
56
+ "ovsx": "^0.10.12",
57
+ "piccolore": "0.1.3",
58
+ "prettier": "^3.8.4",
59
+ "tinyglobby": "0.2.16",
60
+ "tsdown": "^0.22.2",
61
+ "typescript": "~6.0.3",
62
+ "typescript-eslint": "^8.56.1"
63
+ },
64
+ "license": "MIT",
65
+ "engines": {
66
+ "node": ">=22.12.0",
67
+ "vscode": "^1.88.0"
68
+ },
69
+ "scripts": {
70
+ "build": "tsc -b && node scripts/build.js --minify",
71
+ "lint": "biome lint . && eslint --cache --concurrency=auto .",
72
+ "format": "pnpm run format:code && pnpm run format:imports",
73
+ "format:code": "biome format --write && prettier -w \"**/*\" --ignore-unknown --cache",
74
+ "format:imports": "biome check --formatter-enabled=false --write",
75
+ "version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run format"
76
+ }
77
+ }