File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
packages/create-next-stack
website/templates/LandingPage/components Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,13 @@ jobs:
2727 uses : actions/setup-node@v3
2828 with :
2929 node-version : " lts/*"
30+ registry-url : " https://registry.npmjs.org"
3031 cache : pnpm
3132
3233 - name : " Install dependencies"
3334 run : pnpm install
3435
3536 - name : " Publish packages"
3637 run : pnpm publish -r
38+ env :
39+ NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
Original file line number Diff line number Diff line change 11{
22 "name" : " create-next-stack" ,
33 "description" : " Create Next Stack is a website and CLI tool used to easily set up the boilerplate of new Next.js apps." ,
4- "version" : " 0.2.1 " ,
4+ "version" : " 0.2.2 " ,
55 "author" : " Anders Kjær Damgaard @akd-io" ,
66 "bugs" : " https://github.com/akd-io/create-next-stack/issues" ,
77 "homepage" : " https://github.com/akd-io/create-next-stack" ,
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import { capitalizeFirstCharacter } from "../../../utils/capitalizeFirstCharacte
1818import { objectToKeyToKeyMap } from "../../../utils/objectToKeyToKeyMap"
1919import { validateProjectName } from "../../../utils/validateProjectName"
2020import { CommandModal } from "./CommandModal"
21- import { ExternalLinkIcon } from "./icons/ExternalLinkIcon"
2221import { WithInfoIconAndTooltip } from "./InfoIconTooltip"
22+ import { ExternalLinkIcon } from "./icons/ExternalLinkIcon"
2323
2424const cssModulesValue = "css-modules"
2525
@@ -203,7 +203,7 @@ export const TechnologiesForm: React.FC = () => {
203203 formData
204204 ) => {
205205 const calculateCommand = ( formData : TechnologiesFormData ) => {
206- const args = [ "npx" , "create-next-stack@0.2.1 " ]
206+ const args = [ "npx" , "create-next-stack@0.2.2 " ]
207207
208208 args . push ( `--package-manager=${ options [ formData . packageManager ] . value } ` )
209209 args . push ( `--styling=${ options [ formData . styling ] . value } ` )
You can’t perform that action at this time.
0 commit comments