Skip to content

Commit 031fd0c

Browse files
authored
Merge pull request #2 from andersinno/further_customization
Some further separation between our fork and the upstream
2 parents f62fd6e + a987215 commit 031fd0c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/ISSUE_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@
7979
Please fill in all the relevant fields by running these commands in terminal.
8080
-->
8181

82-
1. `npm ls react-scripts-ts` (if you haven’t ejected):
82+
1. `npm ls react-scripts-ts-ai` (if you haven’t ejected):
8383
2. `node -v`:
8484
3. `npm -v`:
8585
4. `yarn --version` (if you use Yarn):
86-
5. `npm ls react-scripts-ts` (if you haven’t ejected):
86+
5. `npm ls react-scripts-ts-ai` (if you haven’t ejected):
8787

8888
Then, specify:
8989

packages/react-scripts/bin/react-scripts-ts.js packages/react-scripts/bin/react-scripts-ts-ai.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ switch (script) {
5252
}
5353
default:
5454
console.log('Unknown script "' + script + '".');
55-
console.log('Perhaps you need to update react-scripts-ts?');
55+
console.log('Perhaps you need to update react-scripts-ts-ai?');
5656
break;
5757
}

packages/react-scripts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"utils"
1919
],
2020
"bin": {
21-
"react-scripts-ts": "./bin/react-scripts-ts.js"
21+
"react-scripts-ts-ai": "./bin/react-scripts-ts-ai.js"
2222
},
2323
"dependencies": {
2424
"autoprefixer": "7.1.2",

packages/react-scripts/scripts/init.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ module.exports = function(
3939

4040
// Setup the script rules
4141
appPackage.scripts = {
42-
start: 'react-scripts-ts start',
43-
build: 'react-scripts-ts build',
44-
test: 'react-scripts-ts test --env=jsdom',
45-
eject: 'react-scripts-ts eject',
42+
start: 'react-scripts-ts-ai start',
43+
build: 'react-scripts-ts-ai build',
44+
test: 'react-scripts-ts-ai test --env=jsdom',
45+
eject: 'react-scripts-ts-ai eject',
4646
};
4747

4848
fs.writeFileSync(

0 commit comments

Comments
 (0)