Skip to content

Commit e1b3a17

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent d059209 commit e1b3a17

File tree

9 files changed

+79
-100
lines changed

9 files changed

+79
-100
lines changed

generators/app/dependencyVersions/package.json

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
{
22
"name": "generator-code-dependencies-versions",
3+
"version": "0.0.1",
4+
"private": false,
35
"description": "Helper file to manage the versions of the node modules used by the generators. Named package.json so the VS Code dependencies completions work. Must be in a subfolder due to #325",
6+
"keywords": [
7+
"codeeditorland",
8+
"land",
9+
"playform"
10+
],
11+
"homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode#readme",
12+
"bugs": {
13+
"url": "HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode/issues"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+HTTPS://github.com/CodeEditorLand/LandGeneratorCode.git"
18+
},
19+
"license": "SEE LICENSE IN LICENSE",
20+
"author": {
21+
"name": "Source 🖋️ Open 👐🏻",
22+
"email": "Source/[email protected]",
23+
"url": "HTTPS://Editor.Land"
24+
},
25+
"type": "module",
26+
"scripts": {
27+
"prepublishOnly": "Build 'Source/**/*.ts'"
28+
},
429
"dependencies": {
530
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
631
"@types/assert": "1.5.11",
@@ -16,5 +41,10 @@
1641
"ts-loader": "9.5.2",
1742
"util": "0.12.5"
1843
},
19-
"devDependencies": {}
44+
"devDependencies": {
45+
"@playform/build": "0.2.1"
46+
},
47+
"publishConfig": {
48+
"access": "public"
49+
}
2050
}
Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +0,0 @@
1-
{
2-
"compilerOptions": {
3-
"module": "Node16",
4-
"target": "ES2022",
5-
"outDir": "out",
6-
"lib": [
7-
"ES2022"
8-
],
9-
"sourceMap": true,
10-
"rootDir": "src",
11-
"strict": true, /* enable all strict type-checking options */
12-
/* Additional Checks */
13-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
16-
}
17-
}
Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +0,0 @@
1-
{
2-
"compilerOptions": {
3-
"module": "Node16",
4-
"target": "ES2022",
5-
"lib": [
6-
"ES2022"
7-
],
8-
"sourceMap": true,
9-
"rootDir": "src",
10-
"strict": true, /* enable all strict type-checking options */
11-
/* Additional Checks */
12-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
15-
}
16-
}
Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +0,0 @@
1-
{
2-
"compilerOptions": {
3-
"module": "Node16",
4-
"target": "ES2022",
5-
"lib": [
6-
"ES2022"
7-
],
8-
"sourceMap": true,
9-
"rootDir": "src",
10-
"strict": true, /* enable all strict type-checking options */
11-
/* Additional Checks */
12-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
15-
}
16-
}
Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +0,0 @@
1-
{
2-
"compilerOptions": {
3-
"module": "Node16",
4-
"target": "ES2020",
5-
"outDir": "dist",
6-
"lib": [
7-
"ES2020", "WebWorker"
8-
],
9-
"sourceMap": true,
10-
"rootDir": "src",
11-
"strict": true, /* enable all strict type-checking options */
12-
/* Additional Checks */
13-
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
14-
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
15-
// "noUnusedParameters": true, /* Report errors on unused parameters. */
16-
}
17-
}
Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +0,0 @@
1-
{
2-
"extends": "../tsconfig-base.json",
3-
"compilerOptions": {
4-
// noEmit prevents the default tsc from building this--we use webpack instead
5-
"noEmit": true,
6-
"rootDir": ".",
7-
"module": "esnext",
8-
"moduleResolution": "bundler",
9-
"lib": ["ES2019", "dom"],
10-
"types": ["webpack-env", "vscode-notebook-renderer"],
11-
}
12-
}
Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +0,0 @@
1-
{
2-
"extends": "../tsconfig-base.json",
3-
"compilerOptions": {
4-
"rootDir": ".",
5-
"outDir": "../../out/extension",
6-
},
7-
"references": []
8-
}
Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
{
2-
"files": [],
3-
"references": [
4-
{
5-
"path": "./src/client"
6-
},
7-
{
8-
"path": "./src/test"
9-
},
10-
{
11-
"path": "./src/extension"
12-
}
13-
]
2+
"compilerOptions": {
3+
"baseUrl": "./",
4+
"outDir": "Target",
5+
"rootDir": "src"
6+
},
7+
"extends": "@playform/build/tsconfig",
8+
"files": [],
9+
"include": [
10+
"src"
11+
],
12+
"references": [
13+
{
14+
"path": "./src/client"
15+
},
16+
{
17+
"path": "./src/test"
18+
},
19+
{
20+
"path": "./src/extension"
21+
}
22+
]
1423
}

package.json

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,31 @@
11
{
22
"name": "generator-code",
3+
"version": "0.0.1",
4+
"private": false,
35
"description": "Yeoman generator for Visual Studio Code extensions.",
6+
"keywords": [
7+
"codeeditorland",
8+
"land",
9+
"playform"
10+
],
11+
"homepage": "HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode#readme",
12+
"bugs": {
13+
"url": "HTTPS://GitHub.Com/CodeEditorLand/LandGeneratorCode/issues"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+HTTPS://github.com/CodeEditorLand/LandGeneratorCode.git"
18+
},
19+
"license": "SEE LICENSE IN LICENSE",
20+
"author": {
21+
"name": "Source 🖋️ Open 👐🏻",
22+
"email": "Source/[email protected]",
23+
"url": "HTTPS://Editor.Land"
24+
},
25+
"type": "module",
426
"main": "./generators/app/index.js",
527
"scripts": {
6-
"prepublishOnly": "npm test",
28+
"prepublishOnly": "Build 'Source/**/*.ts'",
729
"preversion": "npm test",
830
"postversion": "git push && git push --tags"
931
},
@@ -15,7 +37,11 @@
1537
"yosay": "3.0.0"
1638
},
1739
"devDependencies": {
40+
"@playform/build": "0.2.1",
1841
"@types/node": "22.13.14",
1942
"jsonc-parser": "3.3.1"
43+
},
44+
"publishConfig": {
45+
"access": "public"
2046
}
2147
}

0 commit comments

Comments
 (0)