@paroicms/playground_demo2 0.76.2 → 0.76.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
1
 
2
- > @paroicms/playground_demo2@0.76.2 build
3
- > postcss theme/assets/css/index.css -o theme/assets/index.css
2
+ > @paroicms/playground_demo2@0.76.4 build
3
+ > postcss theme/assets/css/index.css -o theme/assets/bundle.css
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.76.4
4
+
5
+ ### Patch Changes
6
+
7
+ - ff8e6b5: Fixed Button feedback and removed last scss commands
8
+
9
+ ## 0.76.3
10
+
11
+ ### Patch Changes
12
+
13
+ - cdc6b7b: Fixed login screen and improved UI
14
+
3
15
  ## 0.76.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo2",
3
- "version": "0.76.2",
3
+ "version": "0.76.4",
4
4
  "description": "Demonstration website for ParoiCMS",
5
5
  "author": "Paroi Team",
6
6
  "license": "MIT",
@@ -14,11 +14,11 @@
14
14
  "main": "paroicms-site.js",
15
15
  "scripts": {
16
16
  "start": "paroicms | npm run _pino-pretty",
17
- "start:dev": "nodemon --watch 'site-schema*.json' --watch config.json",
17
+ "start:dev": "nodemon --watch './site-schema*.json' --watch ./config.json",
18
18
  "dev": "concurrently -n 'node,css' -c 'yellow.bold,magenta.bold' 'npm run start:dev' 'npm run css:watch'",
19
- "build": "postcss theme/assets/css/index.css -o theme/assets/index.css",
20
- "clear": "rimraf theme/assets/index.css",
21
- "css:watch": "postcss theme/assets/css/index.css -o theme/assets/index.css --watch",
19
+ "build": "postcss theme/assets/css/index.css -o theme/assets/bundle.css",
20
+ "clear": "rimraf theme/assets/bundle.css",
21
+ "css:watch": "postcss theme/assets/css/index.css -o theme/assets/bundle.css --watch",
22
22
  "_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
23
23
  },
24
24
  "dependencies": {
@@ -209,11 +209,9 @@
209
209
  <section class="Container">
210
210
  <h1>Test Video</h1>
211
211
  {% if doc.field.video %}
212
- <div class="Deafness-videoPresentate Span4 Mb50">
213
- Video featured
214
- {{ doc.field.video | platformVideo }}
215
- {{ doc.field.video | info }}
216
- </div>
212
+ Video featured
213
+ {{ doc.field.video | platformVideo }}
214
+ {{ doc.field.video | info }}
217
215
  {% endif %}
218
216
  </section>
219
217
  </main>
@@ -8,7 +8,7 @@
8
8
  {%- endif %}
9
9
  {{ site.field.title }}
10
10
  </title>
11
- <link rel="stylesheet" href="{{ site.assetsUrl }}/index.css">
11
+ <link rel="stylesheet" href="{{ site.assetsUrl }}/bundle.css">
12
12
  <script type="module" src="{{ site.assetsUrl }}/js/main.mjs" defer></script>
13
13
  {{ doc | headTags }}
14
14
  </head>
File without changes