-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from timlrx/v2
Simplify exports and add example css for algolia
- Loading branch information
Showing
13 changed files
with
938 additions
and
50 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'pliny': patch | ||
--- | ||
|
||
Remove dynamic load of comments |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'pliny': patch | ||
--- | ||
|
||
Export example css for algolia |
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
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
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 |
---|---|---|
|
@@ -18,14 +18,16 @@ | |
"**" | ||
], | ||
"scripts": { | ||
"dev": "tsup-node --watch && cp -fR dist/* ./ && rimraf dist && node add-use-client.mjs", | ||
"build": "rimraf dist && tsup-node && cp -fR dist/* ./ && rimraf dist && node add-use-client.mjs" | ||
"dev": "tsup-node --watch && cp -fR dist/* ./ && rimraf dist && node add-use-client.mjs && yarn copyfiles", | ||
"build": "rimraf dist && tsup && cp -fR dist/* ./ && rimraf dist && node add-use-client.mjs && yarn copyfiles", | ||
"copyfiles": "copyfiles -f public/algolia.css search" | ||
}, | ||
"author": "Timothy Lin <[email protected]> (https://timlrx.com)", | ||
"dependencies": { | ||
"@docsearch/react": "^3.5.0", | ||
"@mailchimp/mailchimp_marketing": "^3.0.80", | ||
"contentlayer": "^0.3.4", | ||
"copyfiles": "^2.4.1", | ||
"github-slugger": "^1.4.0", | ||
"image-size": "1.0.0", | ||
"js-yaml": "4.1.0", | ||
|
@@ -41,6 +43,7 @@ | |
"react-dom": "^17.0.2 || ^18.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/copyfiles": "^2", | ||
"next": "13.4.10", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
|
Oops, something went wrong.