Skip to content

Commit 3890cdf

Browse files
committed
I dunno wtf I'm doing yet
1 parent 7d186b9 commit 3890cdf

File tree

22 files changed

+594
-18
lines changed

22 files changed

+594
-18
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Pat Cavit
3+
Copyright (c) 2023 Pat Cavit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package-lock.json

+194-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@
7676
"webpack": "^5.0.0"
7777
},
7878
"workspaces": [
79-
"./packages/*"
79+
"packages/*"
8080
]
81-
}
81+
}

packages/aliases/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Pat Cavit
3+
Copyright (c) 2023 Pat Cavit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/browserify/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Pat Cavit
3+
Copyright (c) 2023 Pat Cavit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/cli/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Pat Cavit
3+
Copyright (c) 2023 Pat Cavit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/glob/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Pat Cavit
3+
Copyright (c) 2023 Pat Cavit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

packages/language-server/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Pat Cavit
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.

packages/language-server/package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "@modular-css/language-server",
3+
"version": "29.0.3",
4+
"description": "Language server for modular-css support in editors",
5+
"main": "./server.js",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/tivac/modular-css.git",
9+
"directory": "packages/language-server"
10+
},
11+
"bugs": {
12+
"url": "https://github.com/tivac/modular-css/issues"
13+
},
14+
"author": "Pat Cavit <npm@patcavit.com>",
15+
"homepage": "https://m-css.com",
16+
"license": "MIT",
17+
"publishConfig": {
18+
"access": "public"
19+
},
20+
"keywords": [
21+
"css",
22+
"css-modules",
23+
"modular-css",
24+
"postcss",
25+
"language-server"
26+
],
27+
"dependencies": {
28+
"@modular-css/processor": "^29.0.3",
29+
"vscode-languageserver": "^9.0.1",
30+
"vscode-languageserver-textdocument": "^1.0.11"
31+
}
32+
}

0 commit comments

Comments
 (0)