@paroicms/playground_demo1 0.67.3 → 0.67.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_demo1@0.67.3 build
3
- > postcss theme/assets/css/index.css -o theme/assets/index.css
2
+ > @paroicms/playground_demo1@0.67.4 build
3
+ > postcss theme/assets/css/index.css -o theme/assets/bundle.css
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @paroicms/playground_seoul
2
2
 
3
+ ## 0.67.4
4
+
5
+ ### Patch Changes
6
+
7
+ - ff8e6b5: Fixed Button feedback and removed last scss commands
8
+
3
9
  ## 0.67.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/playground_demo1",
3
- "version": "0.67.3",
3
+ "version": "0.67.4",
4
4
  "description": "Boilerplate 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": {
@@ -7,7 +7,7 @@
7
7
  {% if doc.type != 'home' and doc.title %}{{ doc.title }} -{%- endif %}
8
8
  {{ site.field.title }}
9
9
  </title>
10
- <link rel="stylesheet" href="{{ site.assetsUrl }}/index.css">
10
+ <link rel="stylesheet" href="{{ site.assetsUrl }}/bundle.css">
11
11
  </head>
12
12
 
13
13
  <body>
File without changes