-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: update to gitignore & npmignore file #97
Changes to be committed: modified: .gitignore modified: .npmignore
- Loading branch information
1 parent
f8a5b41
commit 4b8726a
Showing
2 changed files
with
31 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
.DS_Store | ||
node_modules/ | ||
docTemplates/ | ||
.cache/ | ||
|
||
## Sass files built on demand from Token files | ||
demo/sass/_*.scss | ||
## Demo support files | ||
demo/*.css | ||
demo/*.css.map | ||
|
||
## CSS built from Sass process | ||
demo/css | ||
src/*.css | ||
src/*.css.map | ||
demo/css | ||
|
||
## *-css built from sass-render process | ||
*-css.js | ||
|
||
## dist files | ||
dist/ | ||
build/ | ||
|
||
## Karma code coverage reports | ||
## Code coverage reports | ||
coverage/ |
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 |
---|---|---|
@@ -1,17 +1,31 @@ | ||
# standard ignore | ||
*config* | ||
*conf* | ||
LICENSE | ||
NOTICE | ||
|
||
.github/ | ||
.gitignore | ||
.eslintrc | ||
.stylelintrc | ||
karma.conf.js | ||
rollup.config.js | ||
babel.config.js | ||
.github/ | ||
index.html | ||
|
||
coverage/ | ||
docs/ | ||
scripts/ | ||
test/ | ||
demo/css | ||
demo/sass | ||
coverage/ | ||
apiExamples/ | ||
docTemplates/ | ||
demo/**/*.css | ||
demo/**/*.scss | ||
demo/**/*.html | ||
|
||
dist/es5.js | ||
dist/auro-*.js | ||
!dist/auro-*__bundled.js | ||
dist/style-css.js | ||
|
||
index.html | ||
|
||
# ignore src styles | ||
# ignore src | ||
src/**/*.scss | ||
src/**/*.css |