Skip to content

Commit 3523073

Browse files
Switched to scoped @jsdevtools packages
1 parent c4511da commit 3523073

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.eslintrc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# ESLint config
22
# http://eslint.org/docs/user-guide/configuring
3-
# https://github.com/JS-DevTools/eslint-config-modular
3+
# https://jstools.dev/eslint-config-modular/
44

55
root: true
66

77
extends:
8-
- modular/best-practices
9-
- modular/style
10-
- modular/es6
11-
- modular/node
8+
- "@jsdevtools/modular/best-practices"
9+
- "@jsdevtools/modular/style"
10+
- "@jsdevtools/modular/es6"
11+
- "@jsdevtools/modular/node"

lib/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import chai = require("chai");
2-
import { Options } from "ez-spawn";
2+
import { Options } from "@jsdevtools/ez-spawn";
33

44
/**
55
* The Chai-Exec module

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22

3-
const ezSpawn = require("ez-spawn");
3+
const ezSpawn = require("@jsdevtools/ez-spawn");
44
const applyDefaults = require("./apply-defaults");
55
const normalizeResults = require("./normalize-results");
66

test/.eslintrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ESLint config
22
# http://eslint.org/docs/user-guide/configuring
3-
# https://github.com/JS-DevTools/eslint-config-modular
3+
# https://jstools.dev/eslint-config-modular/
44

55
extends:
6-
- modular/test
6+
- "@jsdevtools/modular/test"

0 commit comments

Comments
 (0)