Skip to content

Commit

Permalink
feat: add support for @skyux/core@9.0.0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-SteveBrush authored Sep 14, 2023
1 parent 0e6e173 commit 4dda365
Show file tree
Hide file tree
Showing 16 changed files with 9,267 additions and 7,688 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ on:
branches:
- main
env:
PRERELEASE: 'true'
PRERELEASE: 'false'
MAJOR_VERSION: 9
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Next release
# if: ${{ env.PRERELEASE == 'true' }}
if: ${{ false }}
if: ${{ env.PRERELEASE == 'true' }}
id: next-release
run: |
# Log commands and exit on error.
Expand Down Expand Up @@ -46,7 +45,7 @@ jobs:
labels: 'autorelease ${{ github.ref_name }}: pending'
release-labels: 'autorelease ${{ github.ref_name }}: tagged'
# release-as: '${{ steps.next-release.outputs.next-release }}'
release-as: 9.0.0-alpha.0
release-as: 9.0.0
prerelease: ${{ env.PRERELEASE == 'true' }}
draft-pull-request: true
include-v-in-tag: false
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.14.2
18.17.1
8 changes: 7 additions & 1 deletion .skyuxdev.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"baseBranch": "main",
"documentationExcludeProjects": ["clipboard", "code-block", "media", "stache"]
"documentationExcludeProjects": [
"clipboard",
"code-block",
"media",
"stache"
],
"packageNameUsedToDetermineDistTags": "@blackbaud/skyux-lib-stache"
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
"editor.formatOnSave": true,
"prettier.requireConfig": true,
"cSpell.words": [
"blackbaud",
"crossvent",
"Dragula",
"labelledby",
"omnibar",
"packagr",
"prismjs",
"skyux",
"Stache"
]
}
6 changes: 5 additions & 1 deletion apps/playground/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"outputPath": "dist/apps/playground",
"index": "apps/playground/src/index.html",
"main": "apps/playground/src/main.ts",
"polyfills": "apps/playground/src/polyfills.ts",
"polyfills": [
"apps/playground/src/polyfills.ts",
"@skyux/packages/polyfills"
],
"tsConfig": "apps/playground/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -21,6 +24,7 @@
],
"styles": [
"node_modules/@skyux/theme/css/sky.css",
"node_modules/@skyux/theme/css/themes/modern/styles.css",
"apps/playground/src/styles.scss"
],
"scripts": []
Expand Down
8 changes: 4 additions & 4 deletions libs/clipboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"homepage": "https://github.com/blackbaud/stache#readme",
"peerDependencies": {
"@angular/common": "^16.1.8",
"@angular/core": "^16.1.8",
"@skyux/core": "^9.0.0-alpha.0",
"@skyux/i18n": "^9.0.0-alpha.0"
"@angular/common": "^16.2.5",
"@angular/core": "^16.2.5",
"@skyux/core": "^9.0.0",
"@skyux/i18n": "^9.0.0"
},
"dependencies": {
"tslib": "^2.6.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

/**
* NOTICE: DO NOT MODIFY THIS FILE!
* The contents of this file were automatically generated by
Expand All @@ -11,6 +13,7 @@ import {
SkyI18nModule,
SkyLibResources,
SkyLibResourcesProvider,
SkyLibResourcesService,
getLibStringForLocale,
} from '@skyux/i18n';

Expand All @@ -20,6 +23,8 @@ const RESOURCES: { [locale: string]: SkyLibResources } = {
},
};

SkyLibResourcesService.addResources(RESOURCES);

export class SkyClipboardResourcesProvider implements SkyLibResourcesProvider {
public getString(
localeInfo: SkyAppLocaleInfo,
Expand Down
8 changes: 4 additions & 4 deletions libs/code-block/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
},
"homepage": "https://github.com/blackbaud/stache#readme",
"peerDependencies": {
"@angular/common": "^16.1.8",
"@angular/core": "^16.1.8",
"@angular/platform-browser": "^16.1.8",
"@angular/common": "^16.2.5",
"@angular/core": "^16.2.5",
"@angular/platform-browser": "^16.2.5",
"@blackbaud/skyux-lib-clipboard": "0.0.0-PLACEHOLDER",
"@skyux/i18n": "^9.0.0-alpha.0"
"@skyux/i18n": "^9.0.0"
},
"dependencies": {
"prismjs": "1.29.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

/**
* NOTICE: DO NOT MODIFY THIS FILE!
* The contents of this file were automatically generated by
Expand All @@ -11,6 +13,7 @@ import {
SkyI18nModule,
SkyLibResources,
SkyLibResourcesProvider,
SkyLibResourcesService,
getLibStringForLocale,
} from '@skyux/i18n';

Expand All @@ -22,6 +25,8 @@ const RESOURCES: { [locale: string]: SkyLibResources } = {
},
};

SkyLibResourcesService.addResources(RESOURCES);

export class SkyCodeBlockResourcesProvider implements SkyLibResourcesProvider {
public getString(
localeInfo: SkyAppLocaleInfo,
Expand Down
8 changes: 4 additions & 4 deletions libs/media/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"homepage": "https://github.com/blackbaud/stache#readme",
"peerDependencies": {
"@angular/common": "^16.1.8",
"@angular/core": "^16.1.8",
"@angular/platform-browser": "^16.1.8",
"@skyux/i18n": "^9.0.0-alpha.0"
"@angular/common": "^16.2.5",
"@angular/core": "^16.2.5",
"@angular/platform-browser": "^16.2.5",
"@skyux/i18n": "^9.0.0"
},
"dependencies": {
"tslib": "^2.6.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

/**
* NOTICE: DO NOT MODIFY THIS FILE!
* The contents of this file were automatically generated by
Expand All @@ -11,6 +13,7 @@ import {
SkyI18nModule,
SkyLibResources,
SkyLibResourcesProvider,
SkyLibResourcesService,
getLibStringForLocale,
} from '@skyux/i18n';

Expand All @@ -21,6 +24,8 @@ const RESOURCES: { [locale: string]: SkyLibResources } = {
},
};

SkyLibResourcesService.addResources(RESOURCES);

export class SkyMediaResourcesProvider implements SkyLibResourcesProvider {
public getString(
localeInfo: SkyAppLocaleInfo,
Expand Down
20 changes: 10 additions & 10 deletions libs/stache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
}
},
"peerDependencies": {
"@angular/cli": "^16.1.8",
"@angular/common": "^16.1.8",
"@angular/core": "^16.1.8",
"@angular/platform-browser": "^16.1.8",
"@angular/router": "^16.1.8",
"@skyux/config": "^9.0.0-alpha.0",
"@skyux/core": "^9.0.0-alpha.0",
"@skyux/i18n": "^9.0.0-alpha.0",
"@skyux/layout": "^9.0.0-alpha.0",
"@skyux/lookup": "^9.0.0-alpha.0",
"@angular/cli": "^16.2.2",
"@angular/common": "^16.2.5",
"@angular/core": "^16.2.5",
"@angular/platform-browser": "^16.2.5",
"@angular/router": "^16.2.5",
"@skyux/config": "^9.0.0",
"@skyux/core": "^9.0.0",
"@skyux/i18n": "^9.0.0",
"@skyux/layout": "^9.0.0",
"@skyux/lookup": "^9.0.0",
"fs-extra": "^10.1.0 || ^11"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion libs/stache/schematics/ng-add/ng-add.schematic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('ng-add.schematic', () => {
];

for (const packageName of packageNames) {
expect(packageJson.dependencies[packageName]).toEqual('^9.0.0-alpha.0');
expect(packageJson.dependencies[packageName]).toEqual('^9.0.0');
}
});
});
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* istanbul ignore file */

/**
* NOTICE: DO NOT MODIFY THIS FILE!
* The contents of this file were automatically generated by
Expand All @@ -11,6 +13,7 @@ import {
SkyI18nModule,
SkyLibResources,
SkyLibResourcesProvider,
SkyLibResourcesService,
getLibStringForLocale,
} from '@skyux/i18n';

Expand All @@ -25,6 +28,8 @@ const RESOURCES: { [locale: string]: SkyLibResources } = {
},
};

SkyLibResourcesService.addResources(RESOURCES);

export class SkyStacheResourcesProvider implements SkyLibResourcesProvider {
public getString(
localeInfo: SkyAppLocaleInfo,
Expand Down
Loading

0 comments on commit 4dda365

Please sign in to comment.