Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Tchoupinax/tilt-vscode-extension
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.6
Choose a base ref
...
head repository: Tchoupinax/tilt-vscode-extension
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 8 commits
  • 9 files changed
  • 2 contributors

Commits on Apr 7, 2021

  1. add syntax color for double quote (#8) (#9)

    * feat: fix the issue #8
    
    * chore: upgrade the version
    
    * chore: make the changelog
    
    * fix: add endline in changelog
    Tchoupinax authored Apr 7, 2021
    Copy the full SHA
    d24bc96 View commit details

Commits on Nov 25, 2021

  1. Copy the full SHA
    a8d8a1a View commit details

Commits on Jan 29, 2022

  1. Copy the full SHA
    de73c8d View commit details
  2. Copy the full SHA
    68fde71 View commit details
  3. Copy the full SHA
    7811cd7 View commit details

Commits on Dec 17, 2022

  1. chore: upgrade deps

    Tchoupinax committed Dec 17, 2022
    Copy the full SHA
    3acf039 View commit details

Commits on Dec 19, 2022

  1. chore(deps): bump minimatch from 3.0.4 to 3.1.2 (#14)

    Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2.
    - [Release notes](https://github.com/isaacs/minimatch/releases)
    - [Commits](isaacs/minimatch@v3.0.4...v3.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: minimatch
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 19, 2022
    Copy the full SHA
    01818f7 View commit details
  2. chore(deps): bump qs from 6.10.1 to 6.11.0 (#15)

    Bumps [qs](https://github.com/ljharb/qs) from 6.10.1 to 6.11.0.
    - [Release notes](https://github.com/ljharb/qs/releases)
    - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
    - [Commits](ljharb/qs@v6.10.1...v6.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: qs
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 19, 2022
    Copy the full SHA
    daeb688 View commit details
Showing with 2,303 additions and 19 deletions.
  1. +1 −0 .gitignore
  2. +1 −0 .nvmrc
  3. +1 −1 .vscode/launch.json
  4. +1 −0 .vscodeignore
  5. +11 −0 CHANGELOG.md
  6. +6 −0 README.md
  7. +2,191 −0 package-lock.json
  8. +26 −14 package.json
  9. +65 −4 syntaxes/.tmLanguage.json
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
*.vsix
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
17
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -15,4 +15,4 @@
]
}
]
}
}
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
node_modules
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

### 1.0.9 | 2022-01-29 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.9/vspackage) | [open-vsx.org](https://open-vsx.org/extension/Tchoupinax/tilt)

- Upgrade dependancies because of vulnerability with simple-get

### 1.0.8 | 2021-11-25 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.8/vspackage) | [open-vsx.org](https://open-vsx.org/extension/Tchoupinax/tilt)

- Support multilines triple quoted strings
### 1.0.7 | 2021-04-07 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.7/vspackage) | [open-vsx.org](https://open-vsx.org/extension/Tchoupinax/tilt)

- Add syntax color for double quoted string

### 1.0.6 | 2021-01-12 [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/Tchoupinax/vsextensions/tilt/1.0.6/vspackage) | [open-vsx.org](https://open-vsx.org/extension/Tchoupinax/tilt)

- Rename LICENCE.md to LICENSE.md
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -16,6 +16,12 @@ Example of the syntax (color changes according your theme) :

## Publication

```
npm run package
Using the interface to upload the archive => https://marketplace.visualstudio.com/manage/publishers/tchoupinax
```


```
ovsx publish --pat 'TOKEN'
```
Loading