Skip to content

Commit

Permalink
Fix issue where tsx would copy the package.json file where it shouldn…
Browse files Browse the repository at this point in the history
…'t (#1466)

* Fix issue where tsx would copy the package.json file where it shouldn't copy it

* v3.14.1-rc.2

* Remove reference to package.json in tsconfig includes

This file is never imported by any files and its inclusion in the esnext
folder results in npm's files directive not being processed correctly
(i.e. a bunch of files are left out)

* v3.14.1-rc.3
  • Loading branch information
amrocha authored and danrosenthal committed May 14, 2019
1 parent 589aed6 commit e6a9c15
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ yarn add @shopify/polaris
```html
<link
rel="stylesheet"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.1/polaris.min.css"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.3/polaris.min.css"
/>
```

Expand Down Expand Up @@ -81,7 +81,7 @@ If React doesn’t make sense for your application, you can use a CSS-only versi
```html
<link
rel="stylesheet"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.1/polaris.min.css"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.3/polaris.min.css"
/>
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@shopify/polaris",
"description": "Shopify’s product component library",
"version": "3.14.1-rc.1",
"version": "3.14.1-rc.3",
"private": false,
"license": "SEE LICENSE IN LICENSE.md",
"author": "Shopify <dev@shopify.com>",
Expand Down
6 changes: 3 additions & 3 deletions src/components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Use React components in most cases, especially if you’re building a highly int
```html
<link
rel="stylesheet"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.1/polaris.min.css"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.3/polaris.min.css"
/>
```

Expand All @@ -73,7 +73,7 @@ Include the CSS in your HTML:
```html
<link
rel="stylesheet"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.1/polaris.min.css"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.3/polaris.min.css"
/>
```

Expand Down Expand Up @@ -106,7 +106,7 @@ Include the CSS stylesheet in your HTML:
```html
<link
rel="stylesheet"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.1/polaris.min.css"
href="https://sdks.shopifycdn.com/polaris/3.14.1-rc.3/polaris.min.css"
/>
```

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
"scripthost"
]
},
"include": ["./config/typescript/**/*", "./src/**/*", "./package.json"]
"include": ["./config/typescript/**/*", "./src/**/*"]
}

0 comments on commit e6a9c15

Please sign in to comment.