Skip to content

Commit dda2c95

Browse files
authored
Merge pull request #497 from materializecss/v2-dev
Release 2.1.1
2 parents 924db40 + d74ac66 commit dda2c95

File tree

84 files changed

+28864
-17865
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+28864
-17865
lines changed

.eslintrc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
22
"parserOptions": {
3-
"ecmaVersion": 2015
3+
"ecmaVersion": 2018
44
},
55

6+
"env": {
7+
"browser": true,
8+
"node": true
9+
},
10+
11+
"ignores": ["./spec/support/"],
12+
613
"rules": {
714
"semi": "error",
815
"use-isnan": "error",

.github/workflows/nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- name: Run tests
1616
run: |
1717
npm i
18+
npm run build
1819
npm run test
1920
2021
- name: Nightly build

.gitignore

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,15 @@ npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
2424

25-
# grunt-contrib-sass cache
26-
.sass-cache/
27-
2825
# Dependency directories
2926
node_modules/
30-
bower_components/
31-
32-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
33-
.grunt
34-
dist/src
35-
36-
# Grunt temporary storage
37-
temp/
38-
39-
# Jasmine SpecRunner
40-
_SpecRunner.html
4127

42-
# Ignore compiled files
43-
css/ghpages-materialize.css
44-
bin/
28+
dist/**/*.*
29+
!dist/css/*.css
30+
!dist/css/*.css.map
31+
!dist/js/*.js
32+
!dist/js/*.mjs
33+
!dist/js/*.ts
4534

4635
# Ignore lock
4736
yarn.lock

.prettierignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
node_modules/
22
package.json
33
package.json.lock
4-
bin/
5-
dist/
6-
css/
4+
dist/

FOR_MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To fully release a new version, you need to have access to the @materializecss o
2929

3030
4. Verify that the version is correctly replaced and files were generated in:
3131
* package.json
32-
* src/global.ts
32+
* src/index.ts
3333
* dist/js
3434
* dist/css
3535

Gruntfile.js

Lines changed: 0 additions & 292 deletions
This file was deleted.

0 commit comments

Comments
 (0)