Skip to content

Commit 11ccf0c

Browse files
authored
issue/3151 Introduced library switching (#3153)
1 parent 60fbf7c commit 11ccf0c

File tree

8 files changed

+18004
-16533
lines changed

8 files changed

+18004
-16533
lines changed

.eslintrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,10 @@
4040
"requirejs/no-named-define": "off",
4141
"requirejs/no-commonjs-wrapper": 2,
4242
"requirejs/no-object-define": 1
43+
},
44+
"settings": {
45+
"react": {
46+
"version": "17.02"
47+
}
4348
}
4449
}

grunt/config/replace.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,11 @@ module.exports = function(grunt, options) {
6666
spoor._advancedSettings._manifestIdentifier = spoor._advancedSettings._manifestIdentifier || 'adapt_manifest';
6767
}
6868

69-
// Combine the course and config JSON so both can be passed to replace.
69+
// Combine the course, config and build JSON to pass to replace.
7070
return {
7171
'course': filterNullValues(courseJson),
72-
'config': filterNullValues(configJson)
72+
'config': filterNullValues(configJson),
73+
'build': Helpers.generateConfigData()
7374
};
7475
} catch (ex) {
7576
return {};

src/core/libraries/react-dom.development.js

Lines changed: 16790 additions & 15645 deletions
Large diffs are not rendered by default.

src/core/libraries/react-dom.production.min.js

Lines changed: 245 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)