Skip to content

Commit 702bf74

Browse files
committed
chore: update language service api with html support
1 parent 7ff8318 commit 702bf74

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ test/thirdparty/jasmine-reporters
5050
/src/thirdparty/bugsnag.min.js.map
5151
/src/thirdparty/bugsnag-performance.min.js
5252
/src/thirdparty/bugsnag-performance.min.js.map
53-
/src/thirdparty/no-minify/language-worker.js
53+
/src/thirdparty/no-minify/
5454

5555
# ignore files copied from node_modules to src/thirdparty
5656
# https://github.com/phcode-dev/phoenix/issues/10

gulpfile.js/thirdparty-lib-copy.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@ let copyThirdPartyLibs = series(
9292
copyFiles.bind(copyFiles, ['node_modules/@phcode/fs/dist/virtualfs.js',
9393
'node_modules/@phcode/fs/dist/virtualfs.js.map'], 'src/phoenix'),
9494
// @phcode/language-support . // replace below with language-worker-debug.js if you wanna debug
95-
copyFiles.bind(copyFiles, ['node_modules/@phcode/language-support/dist/language-worker.js'],
96-
'src/thirdparty/no-minify/'),
95+
copyFiles.bind(copyFiles, [
96+
'node_modules/@phcode/language-support/dist/language-worker.js',
97+
'node_modules/@phcode/language-support/dist/language-worker.js.map'], 'src/thirdparty/no-minify/'),
9798
copyLicence.bind(copyLicence, 'node_modules/@phcode/language-support/LICENSE-thirdParty', 'language-services'),
9899
// lessjs
99100
copyFiles.bind(copyFiles, ['node_modules/less/dist/less.min.js', 'node_modules/less/dist/less.min.js.map'],

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"@fortawesome/fontawesome-free": "^6.1.2",
9292
"@highlightjs/cdn-assets": "^11.5.1",
9393
"@phcode/fs": "^3.0.0",
94-
"@phcode/language-support": "^1.0.2",
94+
"@phcode/language-support": "^1.0.5",
9595
"@pixelbrackets/gfm-stylesheet": "^1.1.0",
9696
"@prettier/plugin-php": "^0.22.2",
9797
"@uiw/file-icons": "^1.3.2",

src/thirdparty/licences/language-services.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
The MIT License (MIT)
33
Copyright (c) Microsoft
44

5+
## vscode-html-languageservice
6+
The MIT License (MIT)
7+
Copyright (c) Microsoft
8+
59
## test/thirparty/chai
610
MIT License
711
Copyright (c) 2017 Chai.js Assertion Library

0 commit comments

Comments
 (0)