Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated @babel/core to v7.19.0 #9

Merged
merged 3 commits into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@
}
},
"dependencies": {
"@babel/core": "^7.18.13",
"@babel/core": "^7.19.0",
"@babel/eslint-parser": "^7.18.9",
"glob": "^8.0.3",
"yargs": "^17.5.1"
},
"devDependencies": {
"@sondr3/minitest": "^0.1.1",
"eslint": "^8.22.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"fixturify": "^2.1.1",
"lerna-changelog": "^2.2.0",
"prettier": "^2.7.1"
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/component-classes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForComponentClasses(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/component-stylesheets.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForComponentStylesheets(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/component-templates.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForComponentTemplates(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-adapters.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteAdapters(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-controllers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteControllers(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-models.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteModels(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-routes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteRoutes(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-serializers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteSerializers(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-stylesheets.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteStylesheets(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/route-templates.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteTemplates(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/app/services.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForServices(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/tests/components.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForComponents(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/tests/route-controllers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteControllers(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/tests/route-routes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForRouteRoutes(options) {
Expand Down
3 changes: 2 additions & 1 deletion src/migration/ember-app/tests/services.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import glob from 'glob';
import { join } from 'node:path';

import glob from 'glob';

import { mapPaths } from '../../../utils/map-paths.js';

export function migrationStrategyForServices(options) {
Expand Down
5 changes: 3 additions & 2 deletions tests/test-helpers.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { test } from '@sondr3/minitest';
import fixturify from 'fixturify';
import { strict as assert } from 'node:assert';
import { existsSync, rmSync } from 'node:fs';

import { test } from '@sondr3/minitest';
import fixturify from 'fixturify';

export function assertFixture(outputProject, options) {
const { projectRoot } = options;

Expand Down