Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

Commit fbc5bbf

Browse files
author
Craigory Coppola
committed
feat(core): test sr deployment
1 parent a44f26f commit fbc5bbf

6 files changed

Lines changed: 16 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@ jobs:
7979
env:
8080
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8181
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
82-
- name: Push changes
83-
uses: ad-m/github-push-action@master
84-
with:
85-
github_token: ${{ secrets.GITHUB_TOKEN }}
86-
branch: ${{ github.ref }}
87-
tags: true
8882

8983
# e2e:
9084
# runs-on: ubuntu-latest

packages/core/src/generators/init/schema.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"$schema": "http://json-schema.org/schema",
33
"cli": "nx",
4-
"id": "Init",
5-
"title": "",
4+
"id": "@nx-dotnet/core:init",
5+
"title": "Initialize NxDotnet",
6+
"description": "Update's user's gitignore file + initializes a blank config",
67
"type": "object",
78
"properties": {},
89
"required": []

packages/core/src/models/build-executor-configuration.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { TargetConfiguration } from '@nrwl/devkit';
22

3+
/**
4+
* Returns a TargetConfiguration for the nx-dotnet/core:build executor
5+
*/
36
export function GetBuildExecutorConfiguration(
47
projectName: string
58
): BuildExecutorConfiguration {
@@ -20,6 +23,9 @@ export function GetBuildExecutorConfiguration(
2023
};
2124
}
2225

26+
/**
27+
* Configuration options relevant for the build executor
28+
*/
2329
export interface BuildExecutorConfiguration extends TargetConfiguration {
2430
options: {
2531
output: string;

packages/core/src/models/project-generator-schema.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* Typing for the shared project generator's options
3+
*/
14
export interface NxDotnetProjectGeneratorSchema {
25
name: string;
36
tags?: string;

packages/core/src/models/serve-executor-configuration.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ export function GetServeExecutorConfig(): ServeTargetConfiguration {
1414
};
1515
}
1616

17+
/**
18+
* Target configuration for nx-dotnet/core:serve
19+
*/
1720
export interface ServeTargetConfiguration extends TargetConfiguration {
1821
options: {
1922
configuration: 'Debug' | 'Release';

tsconfig.base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"importHelpers": true,
1111
"target": "es2015",
1212
"module": "esnext",
13-
"lib": ["es2017", "dom"],
13+
"lib": ["es2019", "dom"],
1414
"skipLibCheck": true,
1515
"skipDefaultLibCheck": true,
1616
"baseUrl": ".",

0 commit comments

Comments
 (0)