Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Add loader for .graqhql files #270

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into feature/loader-graphql
  • Loading branch information
patrick91 committed Sep 1, 2018
commit e3b4040ef26e90ab2fe2e135e4113b300a9ad75f
19 changes: 1 addition & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,10 @@
dist: trusty
language: node_js
node_js:
- 8
- 9
cache:
directories:
- node_modules
- packages/create-react-app/node_modules
- packages/react-scripts/node_modules
install: true
script:
- 'if [ $TEST_SUITE = "simple" ]; then tasks/e2e-simple.sh; fi'
- 'if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
# Disabled for the moment, since it requires additional work to be done.
# - 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
env:
matrix:
- TEST_SUITE=simple
- TEST_SUITE=kitchensink
# See comment above
# - TEST_SUITE=installs
matrix:
include:
- node_js: 6
env: TEST_SUITE=kitchensink
- 'tasks/e2e-simple.sh'
1,374 changes: 0 additions & 1,374 deletions CHANGELOG-0.x.md

This file was deleted.

Empty file removed CHANGELOG.md
Empty file.
3 changes: 0 additions & 3 deletions CODE_OF_CONDUCT.md

This file was deleted.

132 changes: 0 additions & 132 deletions CONTRIBUTING.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ npm start

In general, most upgrades won't require any migration steps to work, but if you experience problems after an upgrade, please file an issue, and we'll add it to the list of migration steps below.

### From `<2.16.0` to `>=2.16.0`

Since `2.16.0`, the template uses different `tsconfig` files for both development and production mode. For the latter, unfortunately, the path resolver is not smart enough to fall back to the basic `tsconfig.json` in case the expected `tsconfig.prod.json` is not present, so you have to create this file manually like shown [here](https://github.com/wmonk/create-react-app-typescript/blob/master/packages/react-scripts/template/tsconfig.prod.json).

### From `<2.13.0` to `>=2.13.0`

Since `2.13.0`, `typescript` is listed as a peer dependency of `react-scripts-ts`. For projects generated with at least this version, the init script takes care of properly installing it as dev dependency to the generated projects. Older projects require manual installation, in case you have not already done that.
Expand Down Expand Up @@ -53,6 +57,12 @@ To fix this, create a new file *in the root of the project* called `tsconfig.tes

## Changelog

### 2.17.0
* Update migration instructions - @DorianGrey
* tslint updates - @alexandrudanpop
* Stop eslint includes - @aurerua
* Resolve commited merge conflig - @AndrewKvalheim

### 2.16.0
* Allow `moduleNameMapper` config override - @sebald
* Fix travis build - @DorianGrey
Expand Down
6 changes: 0 additions & 6 deletions appveyor.cleanup-cache.txt

This file was deleted.

42 changes: 0 additions & 42 deletions appveyor.yml

This file was deleted.

67 changes: 0 additions & 67 deletions bootstrap.js

This file was deleted.

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module.exports = {
// please link the files into your node_modules/ and let module-resolution kick in.
// Make sure your source files are compiled, as they will not be processed in any way.
new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]),
new TsconfigPathsPlugin({ configFile: paths.appTsConfig }),
new TsconfigPathsPlugin({ configFile: paths.appTsProdConfig }),
],
},
module: {
Expand Down Expand Up @@ -183,7 +183,7 @@ module.exports = {
options: {
// disable type checker - we will use it in fork plugin
transpileOnly: true,
configFile: paths.appTsProdConfig
configFile: paths.appTsProdConfig,
},
},
],
Expand Down Expand Up @@ -320,6 +320,9 @@ module.exports = {
// Pending further investigation:
// https://github.com/mishoo/UglifyJS2/issues/2011
comparisons: false,
// Don't inline functions with arguments, to avoid name collisions:
// https://github.com/mishoo/UglifyJS2/issues/2842
inline: 1,
},
mangle: {
safari10: true,
Expand All @@ -338,7 +341,7 @@ module.exports = {
// Enable file caching
cache: true,
sourceMap: shouldUseSourceMap,
}), // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
}), // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
new ExtractTextPlugin({
filename: cssFilename,
}),
Expand Down
File renamed without changes.
18 changes: 0 additions & 18 deletions lerna.json

This file was deleted.

Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.