Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release(16.4.3): release 16.4.3 #1693

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/docker-build-doc-site.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: docker-build-doc-site

on:
push:
branches:
- master
on: push

jobs:
website:
Expand Down
5 changes: 1 addition & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: ng-alain-delon

trigger:
- master

pool:
vmImage: 'ubuntu-latest'

Expand Down Expand Up @@ -126,4 +123,4 @@ stages:
- script: yarn install
displayName: 'Install'
- script: yarn run lint
dependsOn: env
dependsOn: env
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "delon",
"version": "16.4.2",
"version": "16.4.3",
"description": "Delon is a set of essential modules for NG-ALAIN.",
"keywords": [
"delon",
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/layout-default/style/_aside.less
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

&-inner {
flex: 1 1 0%;
overflow-x: hidden scroll;
overflow: hidden scroll;
-webkit-overflow-scrolling: touch;
scroll-snap-type: proximity;
scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/build-schematics.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ copyFiles() {
cloneScaffold() {
if [[ ! -d ng-alain ]]; then
echo ">>> Not found scaffold source files, must be clone ng-alain ..."
git clone --depth 1 https://github.com/ng-alain/ng-alain.git
git clone --depth 1 --branch 16.4.2 https://github.com/ng-alain/ng-alain.git
echo ">>> removed .git"
rm -rf ng-alain/.git
else
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ DIST="$(pwd)/dist"
cloneScaffold() {
if [[ ! -d ng-alain ]]; then
echo ">>> Not found scaffold source files, must be clone ng-alain ..."
git clone --depth 1 https://github.com/ng-alain/ng-alain.git
git clone --depth 1 --branch 16.4.2 https://github.com/ng-alain/ng-alain.git
else
echo ">>> Found scaffold source files"
fi
Expand Down
Loading