-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: update rxjs to v7
- Loading branch information
Showing
42 changed files
with
31,497 additions
and
10,704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: 'pvm update' | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
env: | ||
PVM_LL: silly | ||
|
||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 100 | ||
- name: Use Node.js 16.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16.x | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm exec pvm update | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,76 +4,53 @@ on: | |
pull_request: | ||
branches: | ||
- master | ||
- next | ||
- beta | ||
env: | ||
PVM_LL: silly | ||
|
||
jobs: | ||
mark-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 100 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Use Node.js 16.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16.x | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm exec pvm mark-pr | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Use Node.js 12.x | ||
- name: Use Node.js 16.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 12.x | ||
- name: NX Cache | ||
uses: actions/[email protected] | ||
with: | ||
path: ./.cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | ||
- name: Install | ||
run: | | ||
npm ci | ||
env: | ||
CI: true | ||
- name: Build | ||
run: | | ||
npm run build | ||
env: | ||
CI: true | ||
node-version: 16.x | ||
- run: npm ci | ||
- run: npm run build | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Use Node.js 12.x | ||
- name: Use Node.js 16.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 12.x | ||
- name: NX Cache | ||
uses: actions/[email protected] | ||
with: | ||
path: ./.cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | ||
- name: Install | ||
run: | | ||
npm ci | ||
env: | ||
CI: true | ||
- name: Lint | ||
run: | | ||
npm run lint | ||
env: | ||
CI: true | ||
- run: npm ci | ||
- run: npm run lint | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Use Node.js 12.x | ||
- name: Use Node.js 16.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 12.x | ||
- name: NX Cache | ||
uses: actions/[email protected] | ||
with: | ||
path: ./.cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | ||
- name: Install | ||
run: | | ||
npm ci | ||
env: | ||
CI: true | ||
- name: Test | ||
run: | | ||
npm test | ||
env: | ||
CI: true | ||
node-version: 16.x | ||
- run: npm ci | ||
- run: npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,27 @@ | ||
name: Release | ||
name: 'release' | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- next | ||
- beta | ||
tags: | ||
- v[0-9]+.[0-9]+.[0-9]+ | ||
|
||
env: | ||
PVM_LL: silly | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Use Node.js 12.x | ||
uses: actions/[email protected] | ||
- uses: actions/checkout@v2 | ||
with: | ||
node-version: 12.x | ||
- name: NX Cache | ||
uses: actions/cache@v2.1.6 | ||
fetch-depth: 150 | ||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v2.1.5 | ||
with: | ||
path: ./.cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | ||
- name: npm install | ||
run: | | ||
npm ci | ||
env: | ||
CI: true | ||
- name: Build | ||
run: | | ||
npm run build | ||
env: | ||
CI: true | ||
- name: Release | ||
run: | | ||
npm run release | ||
node-version: 16.x | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm exec pvm publish | ||
env: | ||
CI: true | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[versioning] | ||
unified = ['/libs/*'] | ||
source = 'tag' | ||
include_root = false | ||
|
||
[publish.path_mapping] | ||
'libs' = 'dist/libs' | ||
|
||
[changelog] | ||
front_matter = """ | ||
id: index | ||
title: Change Log""" | ||
|
||
[mark_pr] | ||
analyze_update = false | ||
packages_as_labels = false | ||
packages_table = true | ||
packages_graph = false | ||
attach_changelog = true | ||
|
||
[publish] | ||
registry = 'https://registry.npmjs.org' | ||
cli_args = '--access public' | ||
|
||
[update] | ||
default_release_type = 'patch' | ||
commit_via_platform = false | ||
retry_via_platform_if_failed_via_vcs = false | ||
include_root = false | ||
dependants_release_type = 'as-dep' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
const { getJestProjects } = require('@nrwl/jest'); | ||
|
||
module.exports = { projects: getJestProjects() }; | ||
export default { projects: getJestProjects() }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
const nxPreset = require('@nrwl/jest/preset'); | ||
const nxPreset = require('@nrwl/jest/preset').default; | ||
|
||
module.exports = { ...nxPreset }; |
3 changes: 2 additions & 1 deletion
3
libs/child-process/jest.config.js → libs/child-process/jest.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"sourceRoot": "libs/child-process/src", | ||
"projectType": "library", | ||
"generators": {}, | ||
"targets": { | ||
"lint": { | ||
"executor": "@nrwl/linter:eslint", | ||
"options": { | ||
"lintFilePatterns": ["libs/child-process/**/*.ts"] | ||
} | ||
}, | ||
"test": { | ||
"executor": "@nrwl/jest:jest", | ||
"options": { | ||
"jestConfig": "libs/child-process/jest.config.ts", | ||
"passWithNoTests": true | ||
}, | ||
"outputs": ["coverage/libs/child-process"] | ||
}, | ||
"build": { | ||
"executor": "@nrwl/js:tsc", | ||
"options": { | ||
"outputPath": "dist/libs/child-process", | ||
"tsConfig": "libs/child-process/tsconfig.lib.json", | ||
"packageJson": "libs/child-process/package.json", | ||
"main": "libs/child-process/src/index.ts", | ||
"assets": [ | ||
"libs/child-process/*.md", | ||
"libs/child-process.md", | ||
"libs/child-process/.npmignore" | ||
] | ||
}, | ||
"outputs": ["{options.outputPath}"] | ||
}, | ||
"release": { | ||
"executor": "@ng-builders/semrel:release", | ||
"options": { | ||
"npm": { | ||
"pkgRoot": "./dist/libs/child-process" | ||
} | ||
} | ||
} | ||
}, | ||
"tags": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.