File tree Expand file tree Collapse file tree 4 files changed +22
-8
lines changed Expand file tree Collapse file tree 4 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 20
20
21
21
- run : yarn install
22
22
23
+ - run : yarn build
24
+
23
25
- run : yarn test
24
26
25
27
- save_cache :
Original file line number Diff line number Diff line change 1
- ** /*
2
- ! dist
3
- ! CHANGELOG.md
4
- ! LICENSE
5
- ! package.json
6
- ! README.md
1
+ .circleci
2
+ .vscode
3
+ cypress
4
+ docs
5
+ example
6
+ src
7
+ .editorconfig
8
+ .prettierignore
9
+ .prettierrc
10
+ cypress.json
11
+ rollup.config.js
12
+ tsconfig.json
13
+ yarn.lock
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.2.8] - 2017-11-05
10
+ ### Fixed
11
+ * Missing TypeScript definitions and rollup/webpack pkg.module files from published package (#145 )
12
+
9
13
## [ 1.2.7] - 2017-11-05
10
14
### Fixed
11
15
* Package published on npm contained unnecessary files bloating the package (#144 )
@@ -88,7 +92,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
92
### Added
89
93
* Initial release.
90
94
91
- [ Unreleased ] : https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.2.7...HEAD
95
+ [ Unreleased ] : https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.2.8...HEAD
96
+ [ 1.2.8 ] : https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.2.7...v1.2.8
92
97
[ 1.2.7 ] : https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.2.6...v1.2.7
93
98
[ 1.2.6 ] : https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.2.5...v1.2.6
94
99
[ 1.2.5 ] : https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.2.4...v1.2.5
Original file line number Diff line number Diff line change 22
22
"dev" : " concurrently \" yarn tsc:main --watch\" \" yarn tsc:example --watch\" \" yarn build:rollup -w\" \" next dev example\" " ,
23
23
"predocs" : " yarn build" ,
24
24
"docs" : " next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'" ,
25
- "prepublish " : " yarn build" ,
25
+ "prepublishOnly " : " unset npm_config_cafile && yarn build" ,
26
26
"semantic-release" : " semantic-release pre && npm publish && semantic-release post" ,
27
27
"test" : " yarn tsc:main --noEmit && yarn tsc:example --noEmit" ,
28
28
"tsc:example" : " tsc -p example" ,
You can’t perform that action at this time.
0 commit comments