Skip to content

Commit

Permalink
Add directory details to the package.json of all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Jul 18, 2019
1 parent 023c846 commit a6253fc
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 7 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.0.0",
"description": "",
"private": true,
"repository": {
"type" : "git",
"url" : "https://github.com/codesandbox/codesandbox-importers"
},
"scripts": {
"build": "yarn build:dependencies && lerna run build --scope codesandbox --scope git-converter --parallel",
"build:git-extractor": "yarn build:dependencies && lerna run build --scope git-converter",
Expand Down
11 changes: 7 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,18 @@
},
"author": "Ives van Hoorne",
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/codesandbox/codesandbox-importers",
"directory": "packages/cli"
},
"scripts": {
"test": "echo Done && exit 0",
"test:watch": "jest --watch",
"build": "rimraf lib && tsc -p tsconfig.json",
"watch": "tsc --watch -p tsconfig.json",
"prepublish": "yarn build"
},
"repository": "codesandbox-app/codesandbox-importers",
"files": [
"lib"
],
Expand Down Expand Up @@ -81,7 +85,6 @@
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"gitHead": "3cdcdea389d39f2a92be73dcb73496f68c8ada41"
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
}
}
5 changes: 5 additions & 0 deletions packages/git-extractor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"description": "",
"main": "index.js",
"private": true,
"repository": {
"type" : "git",
"url" : "https://github.com/codesandbox/codesandbox-importers",
"directory": "packages/git-extractor"
},
"scripts": {
"build": "rimraf dist && yarn compile",
"compile": "tsc",
Expand Down
8 changes: 6 additions & 2 deletions packages/import-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"name": "codesandbox-import-utils",
"version": "2.1.9",
"repository": {
"type" : "git",
"url" : "https://github.com/codesandbox/codesandbox-importers",
"directory": "packages/import-utils"
},
"main": "lib/index.js",
"files": [
"lib/**"
Expand Down Expand Up @@ -35,6 +40,5 @@
"<rootDir>/dist/"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"gitHead": "3cdcdea389d39f2a92be73dcb73496f68c8ada41"
}
}
6 changes: 5 additions & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"name": "codesandbox-import-util-types",
"version": "2.1.9",
"gitHead": "3cdcdea389d39f2a92be73dcb73496f68c8ada41"
"repository": {
"type" : "git",
"url" : "https://github.com/codesandbox/codesandbox-importers",
"directory": "packages/types"
}
}

0 comments on commit a6253fc

Please sign in to comment.