Skip to content
This repository was archived by the owner on May 15, 2022. It is now read-only.

Commit 0c267bf

Browse files
Merge branch 'feature/separate-dev' into develop
2 parents 4c5971f + 7b079e9 commit 0c267bf

Some content is hidden

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

59 files changed

+11327
-357
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
examples
22
example
3+
dev
34
src

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## (2017-10-08) `v0.0.20`
4+
5+
### Changed
6+
7+
* Housekeeping in preparation for `v1.0.0`
8+
39
## (2017-10-06) `v0.0.19`
410

511
### Added
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dev/.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*

dev/README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Dev
2+
3+
This is a dev app for developing changes to `react-dat-gui`.
4+
5+
## Running
6+
7+
Simply
8+
9+
```
10+
npm i
11+
```
12+
13+
then
14+
15+
```
16+
npm run start
17+
```
18+
19+
And you should see the dev app open in your browser. Alternatively you can `npm run dev` from the root directory of the repository.
20+
21+
## Migrating
22+
23+
You can migrate the latest source code to the dev app by running `npm run dev:migrate` from the root. This will copy all of the source code to `dev/src/react-dat-gui` as well as start the development server.
24+
25+
## Promoting
26+
27+
You can also promote your development code back to the root directory by running `npm run dev:promote` from the root directory.
28+
29+
## Create React App
30+
31+
This app has been bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app), check out their docs if you want to learn more about how it all works.

0 commit comments

Comments
 (0)