-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: New separate entry modules for each component. (#1351)
* refactor(config): Updated tsconfig to standard format, and remove extraneous configs * refactor(jest): switched test back to ng-cli, also alias angular2-text-mask * chore: retest build * chore: updating test results * chore: update node version * feat(Autocomplete): Autocomplete now works with ChipList (#1326) * fix(Chips): update the ux for disabled chips (#1331) -darken the opacity to improve readability -update text color of disabled chips to look non-selectable -remove the X icon to further confer that this chip is read-only Co-authored-by: Michael Dill <[email protected]> * feat(NonIdealState): Non Ideal Loading (#1334) * Expanding non-ideal-state for use case with novo-loading * Expanding non-ideal-state for use case with novo-loading * Minor structure cleanup * Changed message on example * chore(ci): updating tokens * chore(ci): Other Tokens Updated * chore(): reverting commonjs tests * fixed tests * testing test summary * tweaking test summary * fix * fix last attempt * test * fix tsconfig * refactor(NgPackager): first step in tree-shaking * refactor(style): almost all styles removed from novo-elements.scss * BREAKING_CHANGES: Major SCSS updates * fix(build): missing script for nx * fix(build): Removing resize-observer-polyfill * fix(build): weird build error in chips missing `includes` * fixed all jest tests * fix(build): bad styleUrls * chore(build): updated test script * chore(build): Remove copy-scss script as it is handled by ng-packgr now * chore: forgot to remove script * chore(fix): Moved snapshot publish back to root Co-authored-by: Michael Dill <[email protected]> Co-authored-by: Michael Dill <[email protected]> Co-authored-by: antonyw89 <[email protected]>
- Loading branch information
1 parent
7b0df7f
commit d74b1df
Showing
2,694 changed files
with
210,009 additions
and
188,762 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { getJestProjects } from '@nrwl/jest'; | ||
|
||
export default { | ||
projects: getJestProjects(), | ||
}; |
This file contains 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const nxPreset = require('@nrwl/jest/preset').default; | ||
|
||
module.exports = { ...nxPreset }; |
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"affected": { | ||
"defaultBase": "main" | ||
}, | ||
"implicitDependencies": { | ||
"angular.json": "*", | ||
"package.json": { | ||
"dependencies": "*", | ||
"devDependencies": "*" | ||
}, | ||
"nx.json": "*", | ||
"tsconfig.*.json": "*", | ||
"tsconfig.json": "*", | ||
"tslint.json": "*" | ||
}, | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": ["build", "lint", "test", "e2e"] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"build": { | ||
"dependsOn": ["^build"] | ||
} | ||
}, | ||
"workspaceLayout": { | ||
"appsDir": "projects", | ||
"libsDir": "projects" | ||
}, | ||
"cli": { | ||
"analytics": false | ||
}, | ||
"generators": { | ||
"@nrwl/angular:application": { | ||
"style": "css", | ||
"linter": "eslint", | ||
"unitTestRunner": "jest", | ||
"e2eTestRunner": "cypress" | ||
}, | ||
"@nrwl/angular:library": { | ||
"linter": "eslint", | ||
"unitTestRunner": "jest" | ||
}, | ||
"@nrwl/angular:component": { | ||
"style": "css" | ||
} | ||
}, | ||
"defaultProject": "demo" | ||
} |
Oops, something went wrong.