Skip to content

Commit fa9a1f1

Browse files
committed
feat: Migrates to taskless/pack for new functionality
1 parent f8841ff commit fa9a1f1

File tree

11 files changed

+3288
-371
lines changed

11 files changed

+3288
-371
lines changed

.changeset/sour-garlics-punch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@taskless/pack": patch
3+
---
4+
5+
Renames to @taskless/pack to support check and publish operations

package.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,34 @@
11
{
2-
"name": "@taskless/packcheck",
3-
"description": "Check your Taskless Packs",
2+
"name": "@taskless/pack",
3+
"description": "CLI for working with Taskless packs",
44
"version": "0.0.5",
55
"author": "Taskless",
66
"license": "Apache-2.0",
7-
"repository": "taskless/loader-js",
7+
"repository": "taskless/pack",
88
"scripts": {
99
"build": "run-s build:vite build:bin",
10-
"build:bin": "shx chmod +x dist/index.js",
10+
"build:bin": "shx chmod +x dist/cli.js",
1111
"build:vite": "vite build",
1212
"changeset": "changeset",
13+
"codegen": "typed-graphql-builder --schema https://api.taskless.io/graphql --output ./src/__generated__/api.ts",
14+
"codegen:dev": "typed-graphql-builder --schema http://localhost:3000/graphql --output ./src/__generated__/api.ts",
1315
"husky": "husky",
1416
"lint-staged": "lint-staged",
1517
"prepare": "husky",
1618
"prettier": "prettier",
1719
"syncpack": "syncpack",
1820
"test": "NODE_OPTIONS='--no-warnings' vitest",
21+
"tsx": "tsx",
1922
"xo": "xo"
2023
},
2124
"type": "module",
22-
"main": "dist/index.cjs",
23-
"module": "dist/index.js",
25+
"main": "dist/cli.cjs",
26+
"module": "dist/cli.js",
2427
"exports": {
2528
".": {
26-
"types": "./dist/index.d.ts",
27-
"import": "./dist/index.js",
28-
"require": "./dist/index.cjs"
29+
"types": "./dist/cli.d.ts",
30+
"import": "./dist/cli.js",
31+
"require": "./dist/cli.cjs"
2932
}
3033
},
3134
"files": [
@@ -38,21 +41,26 @@
3841
"dependencies": {
3942
"@taskless/loader": "^0.0.29",
4043
"colorette": "^2.0.20",
41-
"command-line-args": "^6.0.1",
42-
"command-line-usage": "^7.0.3",
44+
"dotenv": "^16.5.0",
45+
"graphql-request": "^7.1.2",
46+
"graphql-tag": "^2.12.6",
4347
"jsonpath": "^1.1.1",
48+
"ky": "1.8.1",
4449
"msw": "^2.3.5",
4550
"uint8array-extras": "^1.4.0",
51+
"yargs": "^17.7.2",
4652
"zod": "^3.23.8"
4753
},
4854
"devDependencies": {
4955
"@changesets/cli": "^2.27.7",
5056
"@commitlint/cli": "^19.3.0",
5157
"@commitlint/config-conventional": "^19.2.2",
58+
"@graphql-typed-document-node/core": "^3.2.0",
5259
"@types/command-line-args": "^5.2.3",
5360
"@types/command-line-usage": "^5.0.4",
5461
"@types/jsonpath": "^0.2.4",
5562
"@types/node": "^20.12.12",
63+
"@types/yargs": "^17.0.33",
5664
"execa": "^9.5.1",
5765
"husky": "^9.0.11",
5866
"lint-staged": "^15.2.4",
@@ -62,6 +70,7 @@
6270
"syncpack": "^12.3.2",
6371
"tsx": "^4.16.5",
6472
"type-fest": "^4.23.0",
73+
"typed-graphql-builder": "^5.0.1",
6574
"typescript": "^5.4.5",
6675
"vite": "^5.4.2",
6776
"vite-plugin-dts": "^4.0.3",

0 commit comments

Comments
 (0)