Skip to content

Commit 3900482

Browse files
committed
chore(release): 1.1.0
1 parent c2861c8 commit 3900482

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,11 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.1.0](https://github.com/filestack/filestack-angular/compare/v1.0.2...v1.1.0) (2020-06-08)
6+
7+
8+
### Features
9+
10+
* **module:** Add global config for module, update example site ([c2861c8](https://github.com/filestack/filestack-angular/commit/c2861c85b090f949256ffba5342c41bfe34d6a43))
11+
512
### [1.0.2](https://github.com/filestack/filestack-angular/compare/v1.0.1...v1.0.2) (2020-03-06)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "filestack",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "Angular module for filestack-js",
55
"scripts": {
66
"ng": "ng",
@@ -10,9 +10,9 @@
1010
"test:watch": "ng test filestack-angular",
1111
"lint": "ng lint",
1212
"e2e": "ng e2e",
13-
"release": "ng test filestack-angular --watch=false && ng build filestack-angular && standard-version",
13+
"release": "ng test filestack-angular --watch=false && ng build filestack-angular --prod=true && standard-version",
1414
"publishS3": "npx webpack",
15-
"publish": "cd dist/filestack-angular/ && npm publish && npm publishS3"
15+
"publish": "cd dist/filestack-angular/ && npm publish && cd ../../ && npm run publishS3"
1616
},
1717
"dependencies": {
1818
"@angular/animations": "~9.1.9",

projects/filestack-angular/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/filestack-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@filestack/angular",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"peerDependencies": {
55
"@angular/common": "^8.0.1",
66
"@angular/core": "^8.0.1",

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const S3Plugin = require('webpack-s3-plugin');
22
const path = require('path');
3-
const version = require('../package.json').version;
3+
const version = require('./projects/filestack-angular/package.json').version;
44

55
var config = {
66
mode: 'production',

0 commit comments

Comments
 (0)