Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 04daf93

Browse files
committed
First npm install with extra packages
1 parent 23e9658 commit 04daf93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+39105
-1239
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test-xbrowser": "lerna run test-xbrowser --stream"
1212
},
1313
"dependencies": {
14-
"lerna": "^3.4.3",
15-
"typescript": "^3.1.6"
14+
"lerna": "3.4.3",
15+
"typescript": "3.1.6"
1616
}
1717
}

packages/example-react-ts/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

packages/example-react-ts/.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v10

packages/example-react-ts/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# React Example TypeScript
2+
3+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4+
5+
### Installation
6+
7+
```
8+
lerna bootstrap
9+
```
10+
11+
### `npm start`
12+
13+
Runs the app in the development mode.<br>
14+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
15+
16+
The page will reload if you make edits.<br>
17+
You will also see any lint errors in the console.

packages/example-react-ts/images.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
declare module '*.svg'
2+
declare module '*.png'
3+
declare module '*.jpg'
4+
declare module '*.jpeg'
5+
declare module '*.gif'
6+
declare module '*.bmp'
7+
declare module '*.tiff'

0 commit comments

Comments
 (0)