Skip to content

Commit 14105c3

Browse files
committed
Add directory details to the package.json of all packages
1 parent 023c846 commit 14105c3

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "1.0.0",
44
"description": "",
55
"private": true,
6+
"repository": {
7+
"type" : "git",
8+
"url" : "https://github.com/codesandbox/codesandbox-importers"
9+
},
610
"scripts": {
711
"build": "yarn build:dependencies && lerna run build --scope codesandbox --scope git-converter --parallel",
812
"build:git-extractor": "yarn build:dependencies && lerna run build --scope git-converter",

packages/cli/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@
88
},
99
"author": "Ives van Hoorne",
1010
"license": "MIT",
11+
"repository": {
12+
"type" : "git",
13+
"url" : "https://github.com/codesandbox/codesandbox-importers",
14+
"directory": "packages/cli"
15+
},
1116
"scripts": {
1217
"test": "echo Done && exit 0",
1318
"test:watch": "jest --watch",
1419
"build": "rimraf lib && tsc -p tsconfig.json",
1520
"watch": "tsc --watch -p tsconfig.json",
1621
"prepublish": "yarn build"
1722
},
18-
"repository": "codesandbox-app/codesandbox-importers",
1923
"files": [
2024
"lib"
2125
],
@@ -82,6 +86,5 @@
8286
"<rootDir>/dist/"
8387
],
8488
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
85-
},
86-
"gitHead": "3cdcdea389d39f2a92be73dcb73496f68c8ada41"
89+
}
8790
}

packages/git-extractor/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
"description": "",
55
"main": "index.js",
66
"private": true,
7+
"repository": {
8+
"type" : "git",
9+
"url" : "https://github.com/codesandbox/codesandbox-importers",
10+
"directory": "packages/git-extractor"
11+
},
712
"scripts": {
813
"build": "rimraf dist && yarn compile",
914
"compile": "tsc",

packages/import-utils/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"name": "codesandbox-import-utils",
33
"version": "2.1.9",
4+
"repository": {
5+
"type" : "git",
6+
"url" : "https://github.com/codesandbox/codesandbox-importers",
7+
"directory": "packages/import-utils"
8+
},
49
"main": "lib/index.js",
510
"files": [
611
"lib/**"
@@ -35,6 +40,5 @@
3540
"<rootDir>/dist/"
3641
],
3742
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
38-
},
39-
"gitHead": "3cdcdea389d39f2a92be73dcb73496f68c8ada41"
43+
}
4044
}

packages/types/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"name": "codesandbox-import-util-types",
33
"version": "2.1.9",
4-
"gitHead": "3cdcdea389d39f2a92be73dcb73496f68c8ada41"
4+
"repository": {
5+
"type" : "git",
6+
"url" : "https://github.com/codesandbox/codesandbox-importers",
7+
"directory": "packages/types"
8+
}
59
}

0 commit comments

Comments
 (0)