Skip to content

Commit 247fe46

Browse files
committed
include nested directories in npmignore whitelist
1 parent c0a5986 commit 247fe46

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.npmignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
!README.md
33
!LICENSE
44
!package.json
5-
!*.js
6-
!*.js.map
7-
!index.d.ts
5+
!**/*.js
6+
!**/*.js.map
7+
!**/index.d.ts

README.legacy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The legacy API exists to preserve compatibility for users importing the package using a `script` tag. Because [unpkg.com](https://unpkg.com) serves the latest version of the package if no version is specified, I can't break backwards compatibility, even with a major release. This API also preserves a few features that could potentially be still be useful to some users (guide rendering and editable svg).
1+
The legacy API exists to preserve compatibility for users importing the package using a `script` tag. Because [unpkg.com](https://unpkg.com) serves the latest version of the package if no version is specified, I can't break backwards compatibility, even with a major release. This API also preserves a few features that could potentially still be useful to some users (guide rendering and editable svg).
22

33
---
44

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
55
<title>blobs - playground</title>
66
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400" rel="stylesheet">
7-
<script src="https://unpkg.com/blobs"></script>
7+
<script src="https://unpkg.com/blobs@2.0.0-beta.0"></script>
88
</head>
99
<body>
1010
<style>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blobs",
3-
"version": "2.0.0-beta.0",
3+
"version": "2.0.0-beta.1",
44
"description": "Random blob generator",
55
"author": "g-harel",
66
"license": "MIT",

0 commit comments

Comments
 (0)