Skip to content

Commit a34e7a8

Browse files
authored
Updated project structure (#43)
* chore: Moved blueprints back to src/blueprints * chore: Configured project to account for the new location --------- Co-authored-by: ijlee2 <[email protected]>
1 parent 527956f commit a34e7a8

File tree

16 files changed

+8
-8
lines changed

16 files changed

+8
-8
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# misc
1010
!.*
1111
.*/
12-
/blueprints/
12+
/src/blueprints/
1313
/tests/fixtures/

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,18 @@
2424
"test": "tests"
2525
},
2626
"files": [
27-
"blueprints",
2827
"dist"
2928
],
3029
"scripts": {
31-
"build": "tsc --project tsconfig.build.json && chmod +x dist/bin/ember-codemod-v1-to-v2.js",
30+
"build": "tsc --project tsconfig.build.json && chmod +x dist/bin/ember-codemod-v1-to-v2.js && cp -r src/blueprints dist/src/blueprints",
3231
"changelog": "lerna-changelog",
3332
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
3433
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
3534
"lint:js": "eslint . --cache",
3635
"lint:js:fix": "eslint . --fix",
3736
"lint:types": "tsc --noEmit",
3837
"prepare": "pnpm build",
39-
"test": "tsc --build && mt dist-for-testing --quiet"
38+
"test": "tsc --build && cp -r src/blueprints dist-for-testing/src/blueprints && mt dist-for-testing --quiet"
4039
},
4140
"dependencies": {
4241
"@codemod-utils/blueprints": "^0.2.0",
File renamed without changes.

0 commit comments

Comments
 (0)