forked from remix-run/history
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows users to import only the history they need instead of relying on tree-shaking to get rid of code they don't. It also adds singleton instances to both browser and hash history, which makes sense since the library runs in the context of a single web page.
- Loading branch information
Showing
41 changed files
with
1,805 additions
and
1,462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/build/ | ||
/fixtures/*/history.js | ||
/node_modules/ | ||
|
||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,11 @@ jobs: | |
script: echo "Releasing $TRAVIS_TAG to npm with tag \"$NPM_TAG\" ..." | ||
deploy: | ||
provider: npm | ||
skip_cleanup: true | ||
tag: "$NPM_TAG" | ||
edge: true | ||
cleanup: false | ||
email: [email protected] | ||
api_key: "$NPM_TOKEN" | ||
api_token: "$NPM_TOKEN" | ||
src: "build/history" | ||
tag: "$NPM_TAG" | ||
on: | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.