Skip to content

Commit 09b3912

Browse files
committed
Merge branch 'dev-3.0'
2 parents 3e8ae13 + a5acb4b commit 09b3912

File tree

83 files changed

+14874
-6888
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+14874
-6888
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
steps:
1010
- checkout
1111
- restore_cache:
12-
key: node_modules-{{ checksum "yarn.lock" }}
13-
- run: yarn
12+
key: node_modules-{{ checksum "package-lock.json" }}
13+
- run: npm install
1414
- save_cache:
15-
key: node_modules-{{ checksum "yarn.lock" }}
15+
key: node_modules-{{ checksum "package-lock.json" }}
1616
paths:
1717
- node_modules
18-
- run: yarn build
19-
- run: yarn test
18+
- run: npm run build
19+
- run: npm run test
2020
- persist_to_workspace:
2121
root: .
2222
paths:
23-
- lib
23+
- build
2424
release:
2525
<<: *defaults
2626
steps:

.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 24 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
__coverage__
12
*.tgz
2-
lib
3+
build
34
node_modules

.npmignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
*.tgz
21
.*
3-
.eslintrc.js
2+
__coverage__
43
__tests__
5-
jest.setup.js
6-
node_modules
4+
dr.pogodin-react-helmet-*.tgz
75
src

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Changelog
2+
3+
See [GitHub Releases Page](https://github.com/birdofpreyru/react-helmet/releases)
4+
for changes in the released library versions.

0 commit comments

Comments
 (0)