This repository was archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
[ARCH] 01 - Sass lib -> src & Yarn workspaces #603
Merged
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
da39451
First steps with yarn workspaces
adamzerella d550eb6
Switched sass imports to read from src
adamzerella 0a7499e
Removed pancake folder
adamzerella d56bc14
Upgraded babel and webpack
adamzerella 638a77c
Updated circleci image and build process
adamzerella 0d5d1c6
Upgraded webpack ES6 for babel-loader
adamzerella 354351e
Commented out devDep checks, need to rewrite
adamzerella 61590a4
Added node-module caching to circleci
adamzerella cce923d
Put restore_cache key in wrong order :'(
adamzerella 998720b
Removed pancake root key
adamzerella 2c043f0
Package formatting
adamzerella a8f9575
Installed mocha/chai over jest, removed jest
adamzerella 8f54500
Updated 50% of unit tests
adamzerella b2da886
Renamed packages -> components
adamzerella cd777a2
Installed babel preset minify
adamzerella c2d16f8
added preset to .babelrc
adamzerella 3a0bf34
updated README.md
adamzerella 2a79576
Trailing process.exit for circleci
adamzerella c57655a
Updated autoprefixer tag to be inline with spec
adamzerella 9e4c8cd
Added mode flag to webpack config - creates warning in webpack 4
adamzerella 2168481
Playing around with puppetter args and circle images
adamzerella d74a2db
Removed debug flags, trying node image
adamzerella 81737a3
Updated circleci image
adamzerella b3e8629
Helper should read from src for file check and build to lib/
adamzerella c24094b
Correct webpack config to reference babel-preset-minify as a plugin n…
adamzerella f2dde73
Removed all instances of babel-preset-minify
adamzerella bcb541d
Various tweaks based on PR review
adamzerella a0c610e
Added back missing spacing
adamzerella 38aaa44
Added back es5 name convention
adamzerella b8a121b
Webpack formatting
adamzerella cf11186
Forgot es5 name convention
adamzerella f2150d2
Dependency shuffling
adamzerella 86400d4
Added back ES6 dep comment
adamzerella 7278978
Trailing why git thinks _deps is new
adamzerella 9b35d1f
Updated webpack output location
adamzerella 74d1c03
Added nuke script for pancake/
adamzerella 2412888
Temporary resolved yarn workspace building by pretending animate requ…
adamzerella 8381468
Added missing sass: name false key to animate
adamzerella eab3f68
Reverted pretending animate hass sass
adamzerella 2179eec
Resolved root and core vulnerabilities
adamzerella 023f697
Added missing whitespace in core
adamzerella cef5ae6
Updated engines, removed verbose --pancake from animate
adamzerella 1fc11e0
Added back webpack ./bundle.js -> bundle.js
adamzerella 49ddc5f
Updated local install instructions for yarn and grammar
adamzerella 6d8c870
Updated FAQ notes for yarn
adamzerella 55545eb
Merge branch 'develop' of https://github.com/govau/design-system-comp…
adamzerella b7aff71
Updated auds.json from latest develop
adamzerella ffdd306
Upgraded circle node images to latest lts
adamzerella 82c1f4c
Merge branch 'develop' of https://github.com/govau/design-system-comp…
adamzerella File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
//sass-versioning | ||
@import '../../../core/node_modules/sass-versioning/dist/_index.scss'; | ||
|
||
@import '../../../../node_modules/sass-versioning/dist/_index.scss'; | ||
//dependencies | ||
@import '../../../core/lib/sass/_module.scss'; | ||
@import '../../../core/src/sass/_module.scss'; | ||
|
||
//this module | ||
@import '../../lib/sass/_module.scss'; | ||
@import '../../src/sass/_module.scss'; | ||
|
||
//version check with sass-versioning | ||
@include versioning-check(); | ||
// @include versioning-check(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"presets": ["react", ["es2015", { "modules": false }]], | ||
"plugins": ["transform-object-rest-spread"] | ||
"presets": ["@babel/preset-react", "@babel/preset-env"], | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.