Skip to content

Commit 0dba11f

Browse files
committed
check
1 parent 1732520 commit 0dba11f

File tree

5 files changed

+20
-13
lines changed

5 files changed

+20
-13
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
node-version: 18.4.0
1717
registry-url: "https://registry.npmjs.org"
1818
- run: npm install
19-
- run: npm run check
19+
- run: npm run build
2020
env:
2121
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package-lock.json

Lines changed: 12 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
"workspaces": [
33
"packages/**"
44
],
5-
"scripts": {},
5+
"scripts": {
6+
"build": "run build goPublish"
7+
},
68
"dependencies": {
7-
"@atomico/run": "^0.7.0"
9+
"@atomico/run": "^0.7.1"
810
}
911
}

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"build:compile": "library src/**/*",
1717
"build:exports": "exports lib/**/* types/**/*",
1818
"build": "npm run build:types && npm run build:compile && npm run build:exports",
19-
"prepublishOnly": "npm run test && npm run exports"
19+
"goPublish": "npm publish"
2020
},
2121
"author": "UpperCod",
2222
"license": "ISC",
@@ -97,4 +97,4 @@
9797
]
9898
}
9999
}
100-
}
100+
}

packages/next-app/src/app/layout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import "atomico/ssr/load";
12
import "./globals.css";
23
import { Inter } from "next/font/google";
34

0 commit comments

Comments
 (0)