forked from jaredpalmer/tsdx
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: switch to npm * chore: update gh actions * chore: fix deps * chore: npm latest * chore: rm .yarn * chore: fix build failing * chore: fix docs build failing * chore: fix failing tests bundled regeneratorRuntime has been changed as rollup bump.
- Loading branch information
1 parent
7da5de4
commit 9e91fcb
Showing
12 changed files
with
866 additions
and
2,009 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
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,5 +1,5 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn build | ||
yarn lint-staged | ||
npm run build | ||
npx lint-staged |
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 @@ | ||
package-lock=false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,27 +1,28 @@ | ||
{ | ||
"name": "docs", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"export": "next export && touch out/.nojekyll" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/react": "latest", | ||
"@emotion/react": "latest", | ||
"@emotion/styled": "latest", | ||
"dokz": "latest", | ||
"framer-motion": "latest", | ||
"markdown-to-jsx": "^7.1.5", | ||
"next": "^12.0.4", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"devDependencies": { | ||
"@next/eslint-plugin-next": "^12.0.4", | ||
"compose-function": "^3.0.3", | ||
"eslint-config-next": "^12.0.4" | ||
} | ||
"name": "docs", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"export": "next export && touch out/.nojekyll" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/react": "1", | ||
"@emotion/react": "11", | ||
"@emotion/styled": "11", | ||
"@mdx-js/react": "^1.6.22", | ||
"dokz": "2", | ||
"framer-motion": "6", | ||
"markdown-to-jsx": "^7.1.5", | ||
"next": "^12.0.4", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"devDependencies": { | ||
"@next/eslint-plugin-next": "^12.0.4", | ||
"compose-function": "^3.0.3", | ||
"eslint-config-next": "^12.0.4" | ||
} | ||
} |
Oops, something went wrong.