Skip to content

Commit 49202ee

Browse files
committed
v1.1.1
1 parent 1a1c931 commit 49202ee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ const OUT_DIR_ESM5 = `${NPM_DIR}/package/esm5`;
1919
shell.echo(`Setup package version`);
2020
let version = config.version;
2121
const versionContent = `export default '${version}';`;
22-
const versionFilePath = './src/ui-scroll.version.ts'
23-
shell.touch(versionFilePath)
24-
shell.echo(versionContent).to(versionFilePath)
22+
const versionFilePath = './src/ui-scroll.version.ts';
23+
shell.touch(versionFilePath);
24+
shell.echo(versionContent).to(versionFilePath);
2525
shell.echo(chalk.green(`${PACKAGE} v${version}`));
2626

2727
shell.echo(`Start building...`);

package-dist.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ui-scroll",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Infinite/virtual scroll for Angular",
55
"main": "./bundles/ngx-ui-scroll.umd.js",
66
"module": "./fesm5/ngx-ui-scroll.js",

src/ui-scroll.version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default '1.1.0';
1+
export default '1.1.1';

0 commit comments

Comments
 (0)